我需要阻止直接訪問jsp頁面。安全約束不起作用
我已經把我的web.xml是這樣的:
<security-constraint>
<web-resource-collection>
<web-resource-name>My Hidden Pages</web-resource-name>
<url-pattern>/*.jsp</url-pattern>
</web-resource-collection>
<auth-constraint></auth-constraint>
</security-constraint>
,但所有的頁面仍然在瀏覽器地址欄中輸入自己的地址進行訪問。 我該如何解決這個問題?
僅供參考我使用的碼頭 - Maven的插件和servlet-API 2.5
感謝
只需更新jetty-maven-plugin(現在我正在使用9.2.3),'security-constraint'標籤就開始工作。謝謝。 – helloIAmPau 2014-09-26 08:07:01