我尝试使用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>