引入依赖
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency>
yml 配置
# 关闭缓存就能在开发期间看到实时的效果 thymeleaf: cache: false
导入资源
springmvc源码可以看到
把静态资源放到 resources static public目录下都可以。
========================