jsp为什么路径是正确的,跳转后确是404
<form action="student/save.do" method="post">
比如我要提交到这个地址,却发现怎么提交都是找不到网页。
解决方法是不要用相对路径,用绝对路径。加上
${pageContext.request.contextPath}
如
<form action="${pageContext.request.contextPath}/student/save.do" method="post">
这样就可以提交到了。