これは私のweb.xmlです:
<servlet-mapping>
<servlet-name>Faces Servlet</servlet>
<url-pattern>/*</url-pattern>
</servlet-mapping>
に移動すると:
http://localhost:8080/LearningRoot/index.xhtml
ページは問題なく表示されますが、次の場所に移動すると次のように表示されます。
http://localhost:8080/LearningRoot/
エラーが発生します:
エラーが発生しました:
FacesServletは/*のurl-patternを持つことはできません。別のURLパターンを定義してください。
しかし、なぜ?
そしてこれは私のウェルカムファイルです:
<welcome-file-list>
<welcome-file>/index.xhtml</welcome-file>
</welcome-file-list>