这是我的 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 模式。请定义不同的 url 模式。
但为什么?
这是我的欢迎文件:
<welcome-file-list>
<welcome-file>/index.xhtml</welcome-file>
</welcome-file-list>