我的项目最初是在Jboss下开发的,但如果在WildFly上启动它,浏览器中只有消息:“Not Found”和任何错误。 我错过了什么?
web.xml映射
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>
的index.jsp
<jsp:forward page="./faces/index.xhtml" />
所以它适用于Jboss,但不适用于WildFly。
答案 0 :(得分:0)
问题在于jsp。不知道为什么它不适用于WildFly,但在welcome-file
等web.xml中设置faces/index.xhtml
解决了问题。