记录一下今天碰到的问题,学习单点登陆的时候使用springBoot写了个demo但是一直无法跳转html页面,找了两个小时的原因后面发现不是yml配置文件写错了而是pom.xml文件加了includes标签没把.html页面包含进去,我哭了
controller
@Controller
public class SrmIndexController {
@RequestMapping("/index")
public String index(){
// ModelAndView mv = new ModelAndView("index");
return "index";
}
}
yml(写不写都不影响页面跳转)
spring:
thymeleaf:
prefix: classpath:/templates/
suffix: .html
mode: HTML5
encoding: UTF-8
cache: false
pom.xml