# 在application.properties中配置 spring.thymeleaf.prefix=classpath:/templates/ spring.thymeleaf.suffix=.html spring.thymeleaf.encoding=UTF-8 spring.thymeleaf.mode=HTML5
在Pom.xml添加依赖
org.springframework.boot
spring-boot-starter-thymeleaf
不能用@RestController
@Controller
public class TestController {
@RequestMapping("login")
public String hello(){
return "login";
}
}
@RequestMapping("hh")
public String hh(){
return "hah/hee";
}



