springboot-thymeleaf无法访问templates下的页面
原来写Demo里return后面直接是页面名,没有/
return "index";
//例:
public String loginHTML() {
logger.info("login.html");
return "login";
}
//或者
@RequestMapping("/hi")
public String hi(Model model) {
model.addAttribute("name", "888");
return "hello";
}
若有帮助,望采纳,谢谢
1、请把地址中 / 去除
2、要看看你的配置中关于thymeleaf板块设置,只要设置没有问题,基本都是可以访问的