No09
2017-05-12 08:39
我新建的工程 要从index页面跳转到goforwed.jsp页面,form的action设置为"WEB-INF/goforwed.jsp"。
结果是找不到这个路径
Type Status Report
Description The origin server did not find a current representation for the target resource or is not willing to disclose that one exists.
有谁知道是什么原因么,这个路径应该怎么设
知道原因了:
//通过转发访问WEB-INF资源:WEB-INF为安全目录(位于服务器端,只有服务器级别才能访问,转发就是服务器级别)
request.getRequestDispatcher("WEB-INF/jsp/goforwed.jsp").forward(request, response);
JAVA遇见HTML——JSP篇
248277 学习 · 3071 问题
相似问题