SpringBoot2
一、SpringBoot2 基础
1.1、第一个SpringBoot程序
<!-- web依赖 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
parent:继承spring-boot-starter- parent
的依赖营理,控制放本与打包等内容
dependencies:项目具体依赖,这里包含了spring- boot-starter-web
用于实现HTTP接口(该依赖中包含了Spring MVC),官网对它的描述是:使用Spring MVC构建Web (包括RESTful)应用程序的入门者,使用Tomcat作为默认嵌入式容器。; spring-boot-starter-test
用于编写单元测试的依赖包。更多功能模块的使用我们将在后面逐步展开。
build:构建配置部分。默认使用了spring-boot-maven-plugin
,配合spring- boot-starter-parent
就可以把Spring Boot应用打包成JAR来直接运行。
1.2、原理
1.2.1、自动配置
pom.xml
- spring-boot-dependencies : 核心依赖在父工程中!
- 我们在写或者引入一些SPringboot依赖的时候,不需要指定版本,就因为有这些版本仓库
启动器
- 说白了就是Springboot的启动场景;
- 比如spring-boot-starter-web,他就会帮我们自动导入web环境所有的依赖!.
- springboot会将所有的功能场景,都变成一个个的启动器
- 我们要使用什么功能,就只需要找到对应的启动器就可以了
主程序
//@SpringBootApplication :标注这个类是一个springboot的应用
@SpringBootApplication
public class Demo01Application{
public static void main(String[] args) {
//将springboot应用启动
SpringApplication.run(Demo01Application.class, args);
}
}
- 注解
@springBootconfiguration : springboot的配置
@configuration: spring配置类
@component: 说明这也是一个spring的组件
@EnableAutoConfiguration : 自动配置
@AutoconfigurationPackage: 自动配置包
@Import(AutoConfigurationPackages.Registrar.class): 自动配置(包注册)
@Import(AutoconfigurationImportselector.class); 自动导入选择
//获取所有的配置
List<String> configurations = getcandidateconfigurations(annotationMetadata,attributes);
META-INF/spring.factories : 自动配置的核心文件
//所有资源加载到配置类中!
Properties properties = PropertiesLoaderutils.loadProperties(resource);
结论: springboot所有自动配置都是在启动的时候扫描并加载: spring .factories
所有的自动配置类都在这里面,但是不一定生效,要判断条件是否成立,只要导入了对应的start,就有对应的启动器了,有了启动器,我们自动装配就会生效,然后就配置成功!
1.springboot在启动的时候,从类路径下/META-INF/ spring.factories 获取指定的值;
2.将这些自动配置的类导入容器,自动配置就会生效,帮我进行自动配置!
1.2.2、主程序启动
SpringApplication.run分析
分析该方法主要分两部分,一部分是SpringApplication的实例化,二是run方法的执行;
SpringApplication这个类主要做了以下四件事情
- 推断应用的类型是普通的项目还是Web项目
- 查找并加载所有可用初始化器,设置到initializers属性中
- 找出所有的应用程序监听器,设置到listeners属性中
- 推断并设置main方法的定义类,找到运行的主类
1.3、SpringBoot配置
SpringBoot使用一个全局的配置文件,配置文件名称是固定的
application.propertie.
语法结构: key=value.
application.yml
语法结构: key:[空格]value
配置文件的作用︰修改SpringBoot自动配置的默认值,因为SpringBoot在底层都给我们自动配置好了;
1.3.1、yaml
#普通的key: value
nameA: YoRHa
nameB: ${random. uuid}
#对象
studentA:
name: qinjiang
age: 3
#行内写法
studentB: {name: qinjiang,age: 3}
#数组
petsA:
-cat
-dog
petsB: [ cat,dog,pig]
#map
maps: {k1: v1,k2: v2}
@ConfigurationProperties(prefix = "person")
通过此注解,将yaml里的person属性赋值给对象
将配置文件中配置的每一个属性的值,映射到这个组件中;
告诉SpringBoot将本类中的所有属性和配置文件中相关的配置进行绑定
参数 prefix = "person":将配置文件中的person下面的所有属性──对应
只有这个组件是容器中的组件,才能使用容器提供的econfigurationProperties功能
<! --导入配置文件处理器,配置文件进行绑定就会有提示-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
1.3.2、加载指定的配置文件(properties)
@PropertySource(value = "abc.properties")
//SPEL表达式取出配置文件的值
value("${name}")
private String name;
1.3.3、JSR303校验
@Validated //数据校题
@Null()
private String name
基本注解与作用
1.3.4、多环境配置及配置文件位置
(优先级1->2->3->4)
file: ./config/
file:./
classpath:/config/
classpath:/
properties多配置
application.properties
application-test.properties
application-dev.properties
application-spark.properties
#springboot的多坏境配置:可以选择激活那一个配置文件
#在application.properties里
spring.profiles.active=test
yml多配置
server:
port: 8080
spring:
profiles:
active: dev
---
server:
port: 8081
spring:
profiles: test
---
server:
port: 8082
spring:
profiles: dev
1.3、深层原理
@Conditional
在我们这配置文件中能配置的东西,都存在一个固有的规律
xxxxAutoConfigurartion:自动配置类;给容器中添加组件
xxxxProperties:封装配置文件中相关属性;
容器中自动配置类添加组件的时候,会从properties类中获取某些属性。
#可以通过debug=true来查看,哪些自动配置类生效,哪些没有生效!
debug: true
二、SpringBoot Web开发
2.1、导入静态资源
- 可以使用以下方式处理静态资源
webjars
访问路径:localhost:8080/webjars/**
public
,static
,/**
,resources
访问路径:localhost:8080/**
- 优先级: resources>static(默认)>public
2.2、首页
icon:放在static 已favicon.ico命名
2.3、thymeleaf模板引擎
结论:只要需要使用thymeleaf,只需要导入对应的依赖就可以了!我们将html放在我们的templates目录下即可
2.4、MVC配置原理
你想diy一些定制化的功能,只要写这个组件,然后将它交给springboot,springboot就会帮我们自动装配!
SpringBoot在自动配置很多组件的时候,先看容器中有没有用户自己配置的(如果用户自己配置@bean),如果有就用用户配置的,如果没有就用自动配置的;如果有些组件可以存在多个,比如我们的视图解析器,就将用户配置的和自己默认的组合起来
我们要做的就是编写一个@Configuration注解类,并且类型要为WebMvcConfigurer,还不能标注@EnableWebMvc注解
@configuration
public class MyMvcConfig implements webMvcConfigurer i
//视图跳转
@Override
public void addviewControllers(ViewControllerRegistry registry){
registry.addviewController( urlPath: "/123" ).setviewName( "test");
}
}
在springboot中,有非常多的xxxx Configuration帮助我们进行扩展配置,只要看见了这个东西,我们就要注意了! 他们扩展了SpringBoot
2.5、国际化
1.首页配置:注意点,所有页面的静态资源都需要使用thymeleaf接管;
2.页面国际化︰
1.我们需要配置i18n文件
2.我们如果需要在项目中进行按钮自动切换,我们需要自定义一个组件
3.记得将自己写的组件配置到spring容器@Bean
4.#{}
2.6、拦截器
public class LoginHandlerInterceptor implements HandlerInterceptor {
@Override
//调用时间:Controller方法处理之前
//执行顺序:链式Intercepter情况下,Intercepter按照声明的顺序一个接一个执行
// 若返回false,则中断执行,注意:不会进入afterCompletion
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
return HandlerInterceptor.super.preHandle(request, response, handler);
}
@Override
//调用前提:preHandle返回true
//调用时间:Controller方法处理完之后,DispatcherServlet进行视图的渲染之前,也就是说在这个方法中你可以对ModelAndView进行操作
//执行顺序:链式Intercepter情况下,Intercepter按照声明的顺序倒着执行。
//备注:postHandle虽然post打头,但post、get方法都能处理
public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView) throws Exception {
HandlerInterceptor.super.postHandle(request, response, handler, modelAndView);
}
@Override
//调用前提:preHandle返回true
//调用时间:DispatcherServlet进行视图的渲染之后 多用于清理资源
public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) throws Exception {
HandlerInterceptor.super.afterCompletion(request, response, handler, ex);
}
}
在自己的自定义config注册拦截器
@Override
public void addInterceptors(InterceptorRegistry registry) {
registry.addInterceptor(new LoginHandlerInterceptor()).addPathPatterns("/**).excludePathPatterns("/index.htm1","/","/user/ login",*"."lis/**","/img/**");
}
SpringBoot2(二)
三、JDBC使用
四、Druid连接池
五、Mybatis
六、SpringSecurity(安全)
七、Swagger
八、任务
九、Redis
十、分布式 Dubbo + Zookeeper+ SpringBoot
点此跳转