安全约束还会阻止容器中的JSP访问吗?

时间:2019-06-18 13:52:30

标签: jsp

我尝试使用Security-Constraint代替WEB-INF,但是所有JSP访问均被阻止。

是否阻止任何从容器重定向到JSP的命令?

ex)response.sendRedirect("/Main.jsp");->结果:403错误

我想使用Security-confront命令,然后使用sendRedirect命令将其重定向到JSP。有办法吗?

<Security-constraint>
    <web-resource-collection>
    <web-resource-name></web-resource-name>
    <url-pattern>*.jsp</url-pattern>
    <http-method>GET</http-method>
    <http-method>POST</http-method>
    </web-resource-collection>
    <auth-constraint/>
</Security-constraint>

0 个答案:

没有答案