我想從security-constraint
只排除一個JSP文件question.jsp
。從web.xml的安全約束中排除JSP
我有這個從我的web.xml:
<security-constraint>
<display-name>My Security Constraint</display-name>
<web-resource-collection>
<web-resource-name>Protected Area</web-resource-name>
<url-pattern>*.do</url-pattern>
<url-pattern>*.jsp</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>*</role-name>
</auth-constraint>
</security-constraint>
您可以創建一個文件夾並將其他所有內容(question.jsp除外)放在該文件夾中並使用該模式,例如'/ securefolder/*。jsp'。 –
我有這麼多的JSP,所以它非常危險。還有其他解決方案嗎? –