spring boot整合Thymeleaf的那些坑

1.修改pom文件,添加依赖

<dependency>
   <groupId>org.springframework.bootgroupId>
   <artifactId>spring-boot-starter-thymeleafartifactId>
dependency>

<dependency>
   <groupId>nekohtmlgroupId>
   <artifactId>nekohtmlartifactId>
   <version>1.9.6.2version>
dependency>
  • 说明

使用springboot的thymeleaf模板时默认会对HTML进行严格的检查,导致当你的标签没有闭合时就会通不过。nekohtml这个依赖可以解决这一问题。

2.application.properties配置

spring.thymeleaf.cache=false
spring.thymeleaf.mode = LEGACYHTML5

  • 说明

第一行配置是清除缓存,实现热部署。也就是修改了html后不用重启,刷新页面就能看到效果。不过这儿特别强调一下,修改完html后一定要ctrl+f9重新build一下。再回到浏览器刷新,就能看到效果了,就这个花了我一个小时去找答案。

第二行配置是回避HTML进行严格的检查的配置,当然你需要提前引入nekohtml依赖。

  • 小结

当然thymeleaf的使用需要我们通过官网或者在实践中自己尝试

你可能感兴趣的:(spring-Boot,spring)