• SpringBoot web开发-12-springboot整合thymeleaf模板引擎


    springboot整合thymeleaf模板引擎
    • Spring Boot 推荐使用 Thymeleaf 作为其模板引擎。SpringBoot 为 Thymeleaf 提供了一系列默认配置,项目中一但导入了 Thymeleaf 的依赖,相对应的自动配置 (ThymeleafAutoConfiguration) 就会自动生效,因此 Thymeleaf 可以与 Spring Boot 完美整合 。

    • 第一步:引入thymeleaf,怎么引入呢,对于springboot来说,什么事情不都是一个start,我们去在项目中引入一下。给大家三个网址:

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

    • 导入thymeleaf启动器

    
    
        org.springframework.boot
        spring-boot-starter-thymeleaf
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 自动配置,ctrl+单击点击spring-boot-starter-thymeleaf查看具体依赖项
    
      org.thymeleaf
      thymeleaf-spring5
      3.0.15.RELEASE
      compile
    
    
      org.thymeleaf.extras
      thymeleaf-extras-java8time
      3.0.4.RELEASE
      compile
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 使用Thymeleaf:创建模板文件,并放在在指定resources目录下
    • 前面呢,我们已经入了Thymeleaf,那这个要怎么使用呢?我们首先得按照Spring Boot的自动配置原理看一下我们这个Thymeleaf的自动配置规侧,在按照那个规则,我们进行使用。我们去找一下Thymeleaf的自动配置类;

    templates目录下的所有页面,只能通过controller来跳转!这个需要板引擎的支持!thymeLeaf,浏览器无法直接访问页面。resources目录下除了templates文件,其他目录下的资源都可以通过浏览器访问

    • 结论:需要使用thymeleaf,只需要导入对应的依赖3.0以上就可以了!我们将html放在我们的templates目录下即可:Thymeleaf 就能自动进行渲染。

    与 Spring Boot 其他自定义配置一样,我们可以在 application.properties/yml 中修改以 spring.thymeleaf 开始的属性,以实现修改 Spring Boot 对 Thymeleaf 的自动配置的目的。

    public static final String DEFAULT_PREFIX = "classpath:/templates/";
    
    public static final String DEFAULT_SUFFIX = ".html";
    
    • 1
    • 2
    • 3
    • 后台数据发送
    @Controller
    public class TestController {
        @RequestMapping("/test")
        public String test(Model model){
            model.addAttribute("msg","hello springboot!");
            return "test";
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 前端模板设置xmlns:th="http://www.thymeleaf.org"命名空间定义
    
    
    
        
        Title
    
    
    
    

    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 启动程序,在浏览器访问访问http://127.0.0.1:8080/test进行测试。
    • 经过上述步骤:springboot整合thymeleaf就简单的实现了,省去了在springmvc阶段大量的配置过程。

    下一篇:SpringBoot-13-mvc配置原理

  • 相关阅读:
    架构与思维:互联网高性能Web架构
    【牛客网-公司真题-前端入门篇】——奇安信春招笔试-前端-卷2
    C#去掉字符串最后一个字符
    虚幻引擎5:增强输入的使用方法
    学习开发一个RISC-V上的操作系统(汪辰老师) — 一次RV32I加法指令的反汇编
    linux001--初次体验vmware虚拟机
    命名实体识别
    Python(pyexiv2)修改照片(证件照)的拍摄日期
    快速排序法
    java基于微信小程序的捷邻商品销售小程序+ssm+uinapp+Mysql+计算机毕业设计
  • 原文地址:https://blog.csdn.net/weixin_42045639/article/details/126372595