css と jsps の 1 つにばかげた問題があります。登録者のみが内部のページにアクセスできる制限付きフォルダーを作成しました。
何らかの理由で、セキュリティで保護されたフォルダー、login.jsp (セキュリティで保護されたフォルダーの外にある) または login-error.jsp (セキュリティで保護されたフォルダーの外にある) 内のいずれかのページに移動すると、CSS が消えます。
絶対リンクと相対リンクを使用して CSS にリンクしようとしましたが、まだ機能していないようです。
これを解決する方法についてのアイデアはありますか?
これはセキュリティ制約です:
<security-constraint>
<display-name>user</display-name>
<web-resource-collection>
<web-resource-name>Users Area</web-resource-name>
<description>Protected Users Area</description>
<url-pattern>/user/*</url-pattern>
<http-method>GET</http-method>
<http-method>PUT</http-method>
<http-method>HEAD</http-method>
<http-method>POST</http-method>
<http-method>OPTIONS</http-method>
<http-method>TRACE</http-method>
<http-method>DELETE</http-method>
</web-resource-collection>
<auth-constraint>
<description/>
<role-name>user</role-name>
</auth-constraint>
</security-constraint>
これはスクリーンショットのフォルダー構造です。
再度テストしたところ、sec 制約に関連するファイル (login.jsp、login-error.jsp、user/Dashboard.jsp) の CSS が表示されません。