今天遇到一个小问题!太大意了
springboot设置默认跳转页面的问题,本来是个小小的问题搞了我半个小时的形态
先说下开发环境 springboot版本号 2.1.15 jdk1.8
先说明一下我的index默认页面在templates下
先说明一下我的index默认页面在templates下
本来我是在config包下直接
@Configuration
public class DefaultPageConfig extends WebMvcConfigurerAdapter {
@Override
public void addViewControllers(ViewControllerRegistry registry) {
registry.addViewController("/").setViewName("forward:index.html");
}
}
但是还是不行 跳转页面还是404!!!
what?what?what?what?
然后我就在controller层加多一段
@Controller
public class hellocontroller {
@RequestMapping("/")
public String test() {
return "index";
}
}
但是还是不行!!!!
我查来查去代码没问题啊 程序正常 tomcat也正常 - -!!!
然后我就在index后面加了后缀html 居然行了!!
然后我就在index后面加了后缀html 居然行了!!
@RequestMapping("/")
public String test() {
return "index.html";
}