Admin フォルダに Login.jsp ページがあります。これで、ユーザーが Admin フォルダにアクセスするたびに、ログイン ページが最初に実行されるようになります。
以下は、プロジェクトのディレクトリ構造です。
Admin フォルダにアクセスすると、index.jsp の代わりに Login.jsp が実行されるように web.xml で設定する方法
web.xml の内容は次のとおりです。
<display-name>RealCMS</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>