SpringBoot学习笔记03

1.Thymeleaf模板引擎

1.1 模板引擎

前端交给我们的页面,是html页面,如果以前开发,我们需要把它转成jsp页面,jsp的好处是当我们查出一些数据转发到jsp页面以后,我们可以用jsp轻松实现数据的显示,及交互等

jsp支持非常强大的功能,包括能写java代码,但是使用springboot创建的项目,是以jar的方式,不是war,而且用的是嵌入式的Tomcat,所以默认是不支持jsp的

不支持jsp,如果我们直接用静态页面的方式,会给开发带来非常大的麻烦

这时,SpringBoot推荐你可以来使用模板引擎

模板引擎,其实之前接触到了很多,其中jsp就是一个模板引擎,还有用的比较多的freemarker,包括springboot给我们推荐的Thymeleaf,模板引擎有非常多,但再多的模板引擎,他们的思想都是一样的

模板引擎的作用就是我们来写一个页面模板,比如一些值,是动态的,我们写一些表达式,而这些值,从哪儿来呢,就是我们在后台封装一些数据,然后把这个模板和这个数据交给我们的模板引擎,模板引擎按照我们这个数据帮你把这个表达式解析,填充到我们指定的位置,然后把这个数据最终生成一个我们想要的内容给我们写进去,这就是我们这个模板引擎,不管是jsp还是其他的模板引擎,都是这个思想,只不过不同的模板引擎之间的语法可能不一样

1.2 引入Thymeleaf

对于springboot来说,就是一个start的事情

Thymeleaf 官网:https://www.thymeleaf.org/

Thymeleaf 在Github 的主页:https://github.com/thymeleaf/thymeleaf

Spring官方文档:找到我们对应的版本

https://docs.spring.io/spring-boot/docs/2.2.5.RELEASE/reference/htmlsingle/#using-boot-starter

找到对应的pom依赖

  1. <!--thymeleaf-->
  2. <dependency>
  3. <groupId>org.springframework.boot</groupId>
  4. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  5. </dependency>

添加到pom.xml文件中,maven会自动下载相关的jar包

SpringBoot学习笔记03 - 图1

1.3 Thymeleaf分析

既然已经引入了Thymeleaf,那么要怎么使用呢?

首先得按照springboot的自动配置原理看一下我们这个Thymeleaf的自动配置规则,在按照那个规则进行使用

去找一下Thymeleaf的自动配置类:ThymeleafProperties

  1. @ConfigurationProperties(
  2. prefix = "spring.thymeleaf"
  3. )
  4. public class ThymeleafProperties {
  5. private static final Charset DEFAULT_ENCODING;
  6. public static final String DEFAULT_PREFIX = "classpath:/templates/";
  7. public static final String DEFAULT_SUFFIX = ".html";
  8. private boolean checkTemplate = true;
  9. private boolean checkTemplateLocation = true;
  10. private String prefix = "classpath:/templates/";
  11. private String suffix = ".html";
  12. private String mode = "HTML";
  13. private Charset encoding;
  14. }

我们可以在其中看到默认的前缀和后缀

我们只需要把我们的html页面放在类路径下的templates下,Thymeleaf就可以帮我们自动渲染

使用Thymeleaf什么都不需要配置,只需要将他放在指定的文件夹下即可

测试

  1. 编写一个Controller
  1. @Controller
  2. public class HelloController {
  3. @RequestMapping("/test")
  4. public String hello(){
  5. return "test";
  6. }
  7. }
  1. 编写一个测试页面test.html 放在templates目录下
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. </head>
  7. <body>
  8. <h1>测试页面</h1>
  9. </body>
  10. </html>
  1. 启动项目请求测试

SpringBoot学习笔记03 - 图2

1.4 Thymeleaf语法学习

做个简单的练习:我们需要查出一些数据,在页面中展示

  1. 修改测试请求,增加数据传输
  1. @RequestMapping("/t1")
  2. public String test1(Model model){
  3. //存入数据
  4. model.addAttribute("msg","Hello,Thymeleaf");
  5. return "test";
  6. }
  1. 我们要使用thymeleaf,需要在html文件中导入命名空间的约束,方便提示
  1. xmlns:th="http://www.thymeleaf.org"
  1. 去编写下前端页面
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns:th="http://www.thymeleaf.org">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. </head>
  7. <body>
  8. <h1>测试页面</h1>
  9. <!--th:text就是将div中的内容设置为他指定的值-->
  10. <div th:text="${msg}"></div>
  11. </body>
  12. </html>
  1. 启动测试

SpringBoot学习笔记03 - 图3

练习测试

  1. 编写一个Controller,放一些数据
  1. @RequestMapping("/t2")
  2. public String test2(Map<String,Object> map){
  3. //存入数据
  4. map.put("msg","<h1>Hello</h1>");
  5. map.put("users", Arrays.asList("jcsune","test"));
  6. return "test";
  7. }
  1. 测试页面取出数据
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns:th="http://www.thymeleaf.org">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. </head>
  7. <body>
  8. <h1>测试页面</h1>
  9. <!--th:text就是将div中的内容设置为他指定的值-->
  10. <div th:text="${msg}"></div>
  11. <!--不转义-->
  12. <div th:utext="${msg}"></div>
  13. <!--遍历数据-->
  14. <!--th:each 每次遍历都会生成当前这个标签-->
  15. <h4 th:each="user :${users}" th:text="${user}"></h4>
  16. <h4>
  17. <!--行内写法:官网#12-->
  18. <span th:each="user:${users}">[[${user}]]</span>
  19. </h4>
  20. </body>
  21. </html>
  1. 启动测试

SpringBoot学习笔记03 - 图4

2.MVC自动配置原理

2.1 官网阅读

在进行项目编写前,我们还需要了解一个东西,就是SpringBoot对我们的SpringMVC还做了哪些配置,包括如何扩展,如何定制

途径一:源码分析

途径二:官方文档

地址:https://docs.spring.io/spring-boot/docs/2.2.5.RELEASE/reference/htmlsingle/#boot-features-spring-mvc-auto-configuration

  1. Spring MVC Auto-configuration
  2. // Spring Boot为Spring MVC提供了自动配置,它可以很好地与大多数应用程序一起工作。
  3. Spring Boot provides auto-configuration for Spring MVC that works well with most applications.
  4. // 自动配置在Spring默认设置的基础上添加了以下功能:
  5. The auto-configuration adds the following features on top of Springs defaults:
  6. // 包含视图解析器
  7. Inclusion of ContentNegotiatingViewResolver and BeanNameViewResolver beans.
  8. // 支持静态资源文件夹的路径,以及webjars
  9. Support for serving static resources, including support for WebJars
  10. // 自动注册了Converter:
  11. // 转换器,这就是我们网页提交数据到后台自动封装成为对象的东西,比如把"1"字符串自动转换为int类型
  12. // Formatter:【格式化器,比如页面给我们了一个2019-8-10,它会给我们自动格式化为Date对象】
  13. Automatic registration of Converter, GenericConverter, and Formatter beans.
  14. // HttpMessageConverters
  15. // SpringMVC用来转换Http请求和响应的的,比如我们要把一个User对象转换为JSON字符串,可以去看官网文档解释;
  16. Support for HttpMessageConverters (covered later in this document).
  17. // 定义错误代码生成规则的
  18. Automatic registration of MessageCodesResolver (covered later in this document).
  19. // 首页定制
  20. Static index.html support.
  21. // 图标定制
  22. Custom Favicon support (covered later in this document).
  23. // 初始化数据绑定器:帮我们把请求数据绑定到JavaBean中!
  24. Automatic use of a ConfigurableWebBindingInitializer bean (covered later in this document).
  25. /*
  26. 如果您希望保留Spring Boot MVC功能,并且希望添加其他MVC配置(拦截器、格式化程序、视图控制器和其他功能),则可以添加自己
  27. 的@configuration类,类型为webmvcconfiguer,但不添加@EnableWebMvc。如果希望提供
  28. RequestMappingHandlerMapping、RequestMappingHandlerAdapter或ExceptionHandlerExceptionResolver的自定义
  29. 实例,则可以声明WebMVCregistrationAdapter实例来提供此类组件。
  30. */
  31. If you want to keep Spring Boot MVC features and you want to add additional MVC configuration
  32. (interceptors, formatters, view controllers, and other features), you can add your own
  33. @Configuration class of type WebMvcConfigurer but without @EnableWebMvc. If you wish to provide
  34. custom instances of RequestMappingHandlerMapping, RequestMappingHandlerAdapter, or
  35. ExceptionHandlerExceptionResolver, you can declare a WebMvcRegistrationsAdapter instance to provide such components.
  36. // 如果您想完全控制Spring MVC,可以添加自己的@Configuration,并用@EnableWebMvc进行注释。
  37. If you want to take complete control of Spring MVC, you can add your own @Configuration annotated with @EnableWebMvc.

2.2 ContentNegotiatingViewResolver 内容协商视图解析器

自动配置了ViewResolver,就是之前学习的SpringMVC的视图解析器

即根据方法的返回值取得视图对象(View),然后由视图对象决定如何渲染(转发,重定向)

去看源码,找到WebMvcAutoConfiguration,然后搜索ContentNegotiatingViewResolver 找到如下方法

  1. public ContentNegotiatingViewResolver viewResolver(BeanFactory beanFactory) {
  2. ContentNegotiatingViewResolver resolver = new ContentNegotiatingViewResolver();
  3. resolver.setContentNegotiationManager(beanFactory.getBean(ContentNegotiationManager.class));
  4. // ContentNegotiatingViewResolver uses all the other view resolvers to locate
  5. // a view so it should have a high precedence
  6. resolver.setOrder(Ordered.HIGHEST_PRECEDENCE);
  7. return resolver;
  8. }

点进ContentNegotiatingViewResolver类,找到对应的解析视图的代码

  1. @Nullable
  2. public View resolveViewName(String viewName, Locale locale) throws Exception {
  3. RequestAttributes attrs = RequestContextHolder.getRequestAttributes();
  4. Assert.state(attrs instanceof ServletRequestAttributes, "No current ServletRequestAttributes");
  5. List<MediaType> requestedMediaTypes = this.getMediaTypes(((ServletRequestAttributes)attrs).getRequest());
  6. if (requestedMediaTypes != null) {
  7. List<View> candidateViews = this.getCandidateViews(viewName, locale, requestedMediaTypes);
  8. View bestView = this.getBestView(candidateViews, requestedMediaTypes, attrs);
  9. if (bestView != null) {
  10. return bestView;
  11. }
  12. }

继续点进getCandidateViews方法,看到他是把所有的视图解析器拿来,进行while循环,挨个解析

  1. private List<View> getCandidateViews(String viewName, Locale locale, List<MediaType> requestedMediaTypes) throws Exception {
  2. List<View> candidateViews = new ArrayList();
  3. if (this.viewResolvers != null) {
  4. Assert.state(this.contentNegotiationManager != null, "No ContentNegotiationManager set");
  5. Iterator var5 = this.viewResolvers.iterator();
  6. while(var5.hasNext()) {
  7. ViewResolver viewResolver = (ViewResolver)var5.next();
  8. View view = viewResolver.resolveViewName(viewName, locale);
  9. if (view != null) {
  10. candidateViews.add(view);
  11. }

所以得出结论 ContentNegotiatingViewResolver这个视图解析器就是用来组合所有的视图解析器的

我们再去研究下他的组合逻辑,看到一个属性viewResolvers,看看它是在哪里进行赋值的

  1. protected void initServletContext(ServletContext servletContext) {
  2. // 这里它是从beanFactory工具中获取容器中的所有视图解析器
  3. // ViewRescolver.class 把所有的视图解析器来组合的
  4. Collection<ViewResolver> matchingBeans = BeanFactoryUtils.beansOfTypeIncludingAncestors(this.obtainApplicationContext(), ViewResolver.class).values();
  5. ViewResolver viewResolver;
  6. if (this.viewResolvers == null) {
  7. this.viewResolvers = new ArrayList(matchingBeans.size());
  8. Iterator var3 = matchingBeans.iterator();
  9. while(var3.hasNext()) {
  10. viewResolver = (ViewResolver)var3.next();
  11. if (this != viewResolver) {
  12. this.viewResolvers.add(viewResolver);
  13. }
  14. }
  15. } else {
  16. for(int i = 0; i < this.viewResolvers.size(); ++i) {
  17. viewResolver = (ViewResolver)this.viewResolvers.get(i);
  18. if (!matchingBeans.contains(viewResolver)) {
  19. String name = viewResolver.getClass().getName() + i;
  20. this.obtainApplicationContext().getAutowireCapableBeanFactory().initializeBean(viewResolver, name);
  21. }
  22. }
  23. }
  24. AnnotationAwareOrderComparator.sort(this.viewResolvers);
  25. this.cnmFactoryBean.setServletContext(servletContext);
  26. }

可以看出它是在容器中去找视图解析器,这样的话我们是否可以自己实现一个视图解析器呢

我们可以自己给容器中添加视图解析器,这个类就会帮我们自动的将他组合起来

  1. 我们在主程序中去写一个视图解析器来试试
  1. public class MyMvcConfig implements WebMvcConfigurer {
  2. @Bean //放到bean中
  3. public ViewResolver myViewResolver(){
  4. return new MyViewResolver();
  5. }
  6. //自定义了一个自己的视图解析器
  7. private static class MyViewResolver implements ViewResolver {
  8. @Override
  9. public View resolveViewName(String s, Locale locale) throws Exception {
  10. return null;
  11. }
  12. }
  13. }
  1. 怎么看我们的视图解析器有没有起作用

我们给 DispatcherServlet 中的 doDispatch方法 加个断点进行调试一下,因为所有的请求都会走到这个方法中

SpringBoot学习笔记03 - 图5

  1. 启动项目,随便访问一个页面,看一下debug信息,找到this

SpringBoot学习笔记03 - 图6

  1. 找到视图解析器看到我们自定义的就在这里

SpringBoot学习笔记03 - 图7

所以说,我们如果想要使用自己定制化的东西,我们只需要给容器中添加这个组件就行了,剩下的事情SpringBoot就会帮我们做了

2.3 修改springboot的默认配置

这么多的自动配置,原理都是一样的,通过这个webmvc的自动配置原理分析,我们要学会一种学习方式,通过源码探究,得出结论,这个结论一定是属于自己的而且一通百通

springboot在自动配置很多组件的时候,先看容器中有没有用户自己配置的(用户自己配置的bean),如果有就用用户配置的,如果没有就用自动配置的

扩展使用SpringMVC,官方文档如下:

f you want to keep Spring Boot MVC features and you want to add additional MVC configuration (interceptors, formatters, view controllers, and other features), you can add your own @Configuration class of type WebMvcConfigurer but without @EnableWebMvc. If you wish to provide custom instances of RequestMappingHandlerMapping, RequestMappingHandlerAdapter, or ExceptionHandlerExceptionResolver, you can declare a WebMvcRegistrationsAdapter instance to provide such components.

我们要做的就是编写一个@Configuration注解类,并且类型要为WebMvcConfigurer,还不能标注@EnableWebMvc注解,我们自己去写一个;我们新建一个包叫config,写一个类MyMvcConfig

  1. //应为类型要求为WebMvcConfigurer,所以我们实现其接口
  2. //可以使用自定义类扩展MVC的功能
  3. @Configuration
  4. public class MyMvcConfig implements WebMvcConfigurer {
  5. @Override
  6. public void addViewControllers(ViewControllerRegistry registry) {
  7. // 浏览器发送/test , 就会跳转到test页面;
  8. registry.addViewController("/test").setViewName("test");
  9. }
  10. }

去浏览器访问一下

SpringBoot学习笔记03 - 图8

可以看到,确实也跳转过来了,所以说,我们要扩展SpringMVC,官方就推荐我们这么去使用,即保留springboot所有的自动配置,也能用我们扩展的配置

接着去分析一下原理

WebMvcAutoConfiguration是springMvc的自动配置类,里面有一个类WebMvcAutoConfigurationAdapter

这个类上有一个注解,在做其他自动配置时会导入@Import(EnableWebMvcConfiguration.class)

SpringBoot学习笔记03 - 图9

我们点进EnableWebMvcConfiguration.class这个类看一下,它继承了一个父类 DelegatingWebMvcConfiguration

这个父类中有这样一段代码:

  1. public class DelegatingWebMvcConfiguration extends WebMvcConfigurationSupport {
  2. private final WebMvcConfigurerComposite configurers = new WebMvcConfigurerComposite();
  3. // 从容器中获取所有的webmvcConfigurer
  4. @Autowired(required = false)
  5. public void setConfigurers(List<WebMvcConfigurer> configurers) {
  6. if (!CollectionUtils.isEmpty(configurers)) {
  7. this.configurers.addWebMvcConfigurers(configurers);
  8. }
  9. }
  10. }

我们可以在这个类中去寻找一个我们刚才设置的viewController当做参考,发现它调用了一个

  1. protected void addViewControllers(ViewControllerRegistry registry) {
  2. this.configurers.addViewControllers(registry);
  3. }

点进去看一下

  1. public void addViewControllers(ViewControllerRegistry registry) {
  2. Iterator var2 = this.delegates.iterator();
  3. while(var2.hasNext()) {
  4. // 将所有的WebMvcConfigurer相关配置来一起调用!包括我们自己配置的和Spring给我们配置的
  5. WebMvcConfigurer delegate = (WebMvcConfigurer)var2.next();
  6. delegate.addViewControllers(registry);
  7. }
  8. }

所以得出结论:所有的WebMvcConfiguration都会被作用,不止Spring自己的配置类,我们自己的配置类当然也会被调用;

2.4 全面接管SpringMVC

官方文档

  1. If you want to take complete control of Spring MVC
  2. you can add your own @Configuration annotated with @EnableWebMvc.

全面接管即:SpringBoot对SpringMVC的自动配置不需要了,所有都是我们自己去配置,只需要我们在配置类中加一个@EnableWebMvc

我们看下如果我们全面接管了SpringMVC ,我们之前SpringBoot给我们配置的静态资源映射一定会无效,去测试一下,不加注解之前访问首页

SpringBoot学习笔记03 - 图10

给配置类加上注解@EnableWebMvc

SpringBoot学习笔记03 - 图11

可以看到所有的SpringMVC自动配置都失效了,回归到了最初的样子

实际开发中,不推荐使用全面接管SpringMVC

为什么加了一个注解,自动配置就会失效了,我们可以去看一下源码

  1. 点进注解,发现它是导入了一个类
  1. @Retention(RetentionPolicy.RUNTIME)
  2. @Target({ElementType.TYPE})
  3. @Documented
  4. @Import({DelegatingWebMvcConfiguration.class})
  5. public @interface EnableWebMvc {
  6. }
  1. 继续点进去这个类,发现它继承了一个父类 WebMvcConfigurationSupport
  1. public class DelegatingWebMvcConfiguration extends WebMvcConfigurationSupport {
  2. private final WebMvcConfigurerComposite configurers = new WebMvcConfigurerComposite();
  3. public DelegatingWebMvcConfiguration() {
  4. }
  1. 回顾一下WebMvcAutoConfiguration,发现里面有这样一个注解@ConditionalOnMissingBean(WebMvcConfigurationSupport.class)
  1. @Configuration(proxyBeanMethods = false)
  2. @ConditionalOnWebApplication(type = Type.SERVLET)
  3. @ConditionalOnClass({ Servlet.class, DispatcherServlet.class, WebMvcConfigurer.class })
  4. @ConditionalOnMissingBean(WebMvcConfigurationSupport.class)
  5. @AutoConfigureOrder(Ordered.HIGHEST_PRECEDENCE + 10)
  6. @AutoConfigureAfter({ DispatcherServletAutoConfiguration.class, TaskExecutionAutoConfiguration.class,
  7. ValidationAutoConfiguration.class })
  8. public class WebMvcAutoConfiguration {
  9. public static final String DEFAULT_PREFIX = "";
  10. public static final String DEFAULT_SUFFIX
  11. ....

总结:@EnableWebMvc将WebMvcConfigurationSupport组件导入进来了;由于@ConditionalOnMissingBean(WebMvcConfigurationSupport.class)导致SpringMVC的自动配置都失效