The auth-method tag is not specified in web.xml. Initialization of the web application will be stopped. (J2EE application = aa....aa, context root = bb....bb)
- aa....aa:J2EEサーバモードの場合はJ2EEアプリケーション名,サーブレットエンジンモードの場合は空文字列
bb....bb:コンテキストルート名 - 説明
- web.xmlに<auth-constraint>タグを記述した場合,<auth-method>タグで認証メソッドを指定する必要があります。<auth-method>タグが指定されていないため,Webアプリケーションの初期化を中止します。
- 対処
- web.xmlに<auth-method>タグを正しく指定して,再度デプロイを実行してください。