跳转页面需要加上模版依赖:
<!--thymeleaf-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
热加载的依赖:
<!-- 支持热加载jar包依赖 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>true</scope>
</dependency>
注意需要在application.properties配置:
#禁止thymeleaf缓存(建议:开发环境设置为false,生产环境设置为true)
spring.thymeleaf.cache=false