其他分享
首页 > 其他分享> > Thymeleaf与Spring MVC集成

Thymeleaf与Spring MVC集成

作者:互联网

  Spring MVC 九大组件及其配置 - 池塘里洗澡的鸭子 - 博客园 (cnblogs.com)中关于九大组件的功能有了简单地介绍,同时也简单提及模板引擎与Spring MVC的集成。下面以Thymeleaf与Spring MVC集成为例及Spring Boot中如何进行集成的:

  Thymeleaf已经提供了ThymeleafView(默认)和ThymeleafViewResolver,同时其亦提供了一个SpringTemplateEngine类用来驱动在Spring MVC下使用Thymeleaf模板引擎及TemplateResolver用来设置通用的模板引擎——这使得在Spring MVC中集成Thymeleaf引擎变得简单:

          

   在Spring Boot中以上操作都不需要,其通过org.springframework.boot.autoconfigure.thymeleaf包对Thymeleaf进行了自动配置

          

  下面详细研究下这几个类:

    通过ThymeleafAutoConfiguration类对集成所需要的Bean进行自动配置,包括templateResolver、templateEngine和thymeleafViewResolver的配置:

          

    通过ThymeleafProperties来配置Thymeleaf,在application.properties中以spring.thymeleaf开头来配置其用户自适应属性:

          

   Spring Boot自动配置Thymeleaf引擎实战,如下:

    1、静态页面

          

 

    2、Controller

    3、application.yml

    4、测试

      

      

 

 

    

 

 

 

 

 

 

  

标签:集成,Spring,MVC,配置,Thymeleaf,引擎
来源: https://www.cnblogs.com/ilovebath/p/16488049.html