- 在pom.xml中增加thymeleaf依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
- 如果你的视图不是放在/templates/下面,需要在springboot文件中更改view的视图路径
spring:
thymeleaf:
prefix: classpath:/templates
suffix: .html