Thymeleaf

  • SpringBoot支持前端页面使用Thymeleaf渲染,并不支持jsp。
  • web工程项目结构如下:
  • 在templates目录下写前端html等页面的形式就称为thymeleaf

    引入依赖

    <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-thymeleaf<artifactId>
    

    启用不严格检查

  1. 引入nokohtml库:
  2. 修改配置文件加入:

    thymeleaf:
        mode:LEGACYHTML5
    

    代码实例

  • SpringMvc02/:earnResourceController、domain/LearnResource
  • 教程上的效果是这样:
  • 不知道为什么运行出来是这样

参数配置