WildFly 8.2 不启动项目而 Jboss 7.1 执行
WildFly 8.2 does not start project while Jboss 7.1 do
我的项目最初是在 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。
问题出在 jsp。不知道为什么它不适用于 WildFly,但是在 web.xml 中设置 welcome-file
就像 faces/index.xhtml
解决了问题。
我的项目最初是在 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。
问题出在 jsp。不知道为什么它不适用于 WildFly,但是在 web.xml 中设置 welcome-file
就像 faces/index.xhtml
解决了问题。