问答详情
源自:-

关于action路径的问题

http://img.mukewang.com/591502ef0001ee9711630506.jpg

我新建的工程 要从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.

有谁知道是什么原因么,这个路径应该怎么设

提问者:No09 2017-05-12 08:39

个回答

  • No09
    2017-05-12 12:25:35

    知道原因了:

         //通过转发访问WEB-INF资源:WEB-INF为安全目录(位于服务器端,只有服务器级别才能访问,转发就是服务器级别)

         request.getRequestDispatcher("WEB-INF/jsp/goforwed.jsp").forward(request, response);