index.jsp:
<main>
<iframe src="welcome.jsp" >
</iframe>
</main>
控制器:
@RequestMapping("/welcome.do")
public String welcome(){
return "welcome";
}
WEB-INF/views/路径下面index.jsp和welcome.jsp都是存在的,但是一运行就报:
HTTP Status 404 - /welcome.jsp
type Status report
message /welcome.jsp
description The requested resource is not available.
Apache Tomcat/8.5.8
求解答,谢