我在web.xml里设置主页为main.jsp,可以正常访问。
<welcome-file-list>
<welcome-file>/WEB-INF/pages/main.jsp</welcome-file>
</welcome-file-list>
但是通过modelandview重定向的方式访问此jsp,却出现404错误,甚至js也加载不出来
@Controller
@RequestMapping("/baseController")
public class BaseController {
@RequestMapping("/main.html")
public ModelAndView getMain_jsp(){
return new ModelAndView("main");
}
}
这是什么原因导致的?