[个人笔记]
在使用thymeleaf的时候,为了快捷,可以做一下配置
首先是引包,然后在配置文件加上如下配置
spring.thymeleaf.cache=false
spring.thymeleaf.check-template-location=true
spring.thymeleaf.content-type=text/html; charset=utf-8
spring.thymeleaf.enabled=true
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.prefix=classpath:templates/
spring.thymeleaf.suffix=.html
使用官方默认的扫描路径会使之后的工作更加简单
#静态资源存放的地方
classpath:/static
所以我们可以将静态文件放到相应的文件目录下,这样引用文件的时候会简单