SpringBoot2
Sun Jiakai_凯
做一只积极且上进的程序猿,读温柔的句子,见阳光的人,眼里全是温柔和笑意!
展开
-
04. Web开发
Web开发1、SpringMVC自动配置概览Spring Boot provides auto-configuration for Spring MVC that works well with most applications.(大多场景我们都无需自定义配置)The auto-configuration adds the following features on top of Spring’s defaults: Inclusion of ContentNegotiatingViewResol原创 2021-08-14 18:16:41 · 86 阅读 · 0 评论 -
03. 配置文件
配置文件1、文件类型1.1、properties同以前的properties用法1.2、yaml1.2.1、简介 YAML 是 "YAML Ain't Markup Language"(YAML 不是一种标记语言)的递归缩写。在开发的这种语言时,YAML 的 意思其实是:"Yet Another Markup Language"(仍是一种标记语言)。 非常适合用来做以数据为中心的配置文件 1.2.2、基本语法 key: value;kv之间有空格 大小写敏感 使用缩进表示层级关系原创 2021-08-04 19:39:29 · 285 阅读 · 0 评论 -
02、了解自动配置原理_2
了解自动配置原理1. 自动配置原理入门1.1 引导加载自动配置类@SpringBootConfiguration@EnableAutoConfiguration@ComponentScan(excludeFilters = { @Filter(type = FilterType.CUSTOM, classes = TypeExcludeFilter.class), @Filter(type = FilterType.CUSTOM, classes = AutoConfigurationEx原创 2021-08-03 23:07:44 · 89 阅读 · 0 评论 -
02、了解自动配置原理_1
了解自动配置原理1、SpringBoot特点1.1、依赖管理1.父项目做依赖管理依赖管理 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.3.4.RELEASE</version>原创 2021-08-03 21:45:09 · 66 阅读 · 0 评论 -
01、SpringBoot2入门
SpringBoot2入门1、系统要求Java 8 & 兼容java14 .Maven 3.3+idea 20211.1、maven设置<mirrors> <mirror> <id>nexus-aliyun</id> <mirrorOf>central</mirrorOf> <name>Nexus aliyun</name>原创 2021-08-01 21:19:23 · 72 阅读 · 0 评论