1.确定Controller类上使用的注解为@Controller而不是@RestController
原因:@RestController=@Controller+@ResponseBody的注解的组合,返回的为字符串,不能返回页面。
2.pom.xml中添加依赖
org.springframework.boot
spring-boot-starter-thymeleaf
3.application.properties中添加模板的路径
spring.thymeleaf.prefix=classpath:/templates/
4.resources文件中加入templates
5.访问即可成功返回页面