Loading

上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 37 下一页
摘要: 1. 分布式文件系统 分布式文件系统(Distributed File System,DFS)又叫做网络文件系统(Network File System)。一种允许文件通过网络在多台主机上分享的文件系统,可让多机器上的多用户分享文件和存储空间。 【特点】在一个分享的磁盘文件系统中,所有节点对数据存储 阅读全文
posted @ 2021-09-21 11:40 tree6x7 阅读(224) 评论(0) 推荐(0)
摘要: https://docs.spring.io/spring-boot/docs/2.4.3/reference/html/production-ready-features.html#production-ready 1. 简述 未来每一个微服务在云上部署以后,我们都需要对其进行监控、追踪、审计、控 阅读全文
posted @ 2021-09-14 21:58 tree6x7 阅读(97) 评论(0) 推荐(0)
摘要: 1. JUnit5 简述 Spring Boot 2.2.0 版本开始引入 JUnit 5 作为单元测试默认库。 作为最新版本的 JUnit 框架,JUnit5 与之前版本的 Junit 框架有很大的不同。由 3 个不同子项目的几个不同模块组成。 JUnit 5 = JUnit Platform + 阅读全文
posted @ 2021-09-14 21:56 tree6x7 阅读(77) 评论(0) 推荐(0)
摘要: 后续再补充 ... 1. Redis 1.1 导入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </depende 阅读全文
posted @ 2021-09-14 21:55 tree6x7 阅读(34) 评论(0) 推荐(0)
摘要: 1. 数据源的自动配置 1.1 导入 JDBC 场景 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jdbc</artifactId> </dependenc 阅读全文
posted @ 2021-09-14 21:53 tree6x7 阅读(53) 评论(0) 推荐(0)
摘要: 1. 错误处理 1.1 默认规则 https://docs.spring.io/spring-boot/docs/2.3.12.RELEASE/reference/html/spring-boot-features.html#boot-features-error-handling 1.1.1 /e 阅读全文
posted @ 2021-09-14 21:51 tree6x7 阅读(63) 评论(0) 推荐(0)
摘要: 1. 数据响应与内容协商 1.1 返回值处理流程 (1)执行目标方法,获取方法返回值 returnValue。 (2)returnValueHandlers 调用 handleReturnValue() 进行处理 → 循环遍历〈返回值处理器集合〉,找到 support 处理返回值标了@Respons 阅读全文
posted @ 2021-09-14 21:47 tree6x7 阅读(77) 评论(0) 推荐(0)
摘要: 1. 静态资源配置 1.1 访问静态资源 (1)默认访问静态资源的方式:当前项目根路径 / + 静态资源名 (2)请求会先去找 Controller 看有没有对应的 HandlerMapping,不能处理的所有请求又都交给静态资源处理器 ResourceHttpRequestHandler,若静态资 阅读全文
posted @ 2021-09-14 21:41 tree6x7 阅读(47) 评论(0) 推荐(0)
摘要: 1. yml 配置文件 SpringBoot 使用一个全局的配置文件,配置文件名是固定的(如下),位置在 src/main/resources 目录或者类路径 /config 下。 application.properties application.yml .yml 是 YAML (YAML Ai 阅读全文
posted @ 2021-09-14 21:36 tree6x7 阅读(111) 评论(0) 推荐(0)
摘要: 1. Spring 和 SpringBoot 1.1 Spring 能做什么? Spring 的生态:web 开发、数据访问、安全控制、分布式、消息服务、移动开发、批处理 ... 1.2 Spring5 重要升级 1. 响应式编程 2. 内部源码设计 基于 Java8 的一些新特性,如:接口默认实现 阅读全文
posted @ 2021-09-14 21:34 tree6x7 阅读(84) 评论(0) 推荐(0)
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 37 下一页