我无法在Winstone服务器上发布JSF2应用程序。
服务器配置正常,当我删除
<load-on-startup>1</load-on-startup>
从web.xml开始,它正常启动:
但是当我尝试启动indew.xhtml时,服务器报告:
web.xml 的一部分:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
id="WebApp_ID" version="2.5">
<display-name>PIA</display-name>
<session-config>
<session-timeout>60</session-timeout>
</session-config>
<welcome-file-list>
<welcome-file>index.xhtml</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.xhtml</url-pattern>
</servlet-mapping>
<context-param>
<description>State saving method: 'client' or 'server'.</description>
<param-name>javax.faces.STATE_SAVING_METHOD</param-name>
<param-value>client</param-value>
</context-param>
<context-param>
<param-name>javax.servlet.jsp.jstl.fmt.localizationContext</param-name>
<param-value>resources.application</param-value>
</context-param>
<context-param>
<param-name>javax.faces.DEFAULT_SUFFIX</param-name>
<param-value>.xhtml</param-value>
</context-param>
</web-app>
更新:我已尝试winstone 1.0.0.jar
并报告此内容:
但我的WEB-INF \ lib文件夹中有slf4j-api-1.6.4.jar
和slf4j-log4j12-1.6.4.jar
...
应该在哪里出问题?
答案 0 :(得分:1)
将此添加到web.xml
以显式注册应该配置JSF工厂的侦听器。
<listener>
<listener-class>com.sun.faces.config.ConfigureListener</listener-class>
</listener>
另一种可能的解决方案是从<load-on-startup>
中删除FacesServlet
,但我从未使用过Winstone,所以我无法保证是否可以在该服务器上运行。
这种解决方法在体面的服务器中通常不是强制性的,但在糟糕的服务器中则是如此。有关更多背景信息,另请参阅could not find Factory: javax.faces.context.FacesContextFactory。
更新,添加侦听器后,异常消失,但现在显示Error instantiating listener class: com.sun.faces.config.ConfigureListener
没有任何堆栈跟踪。吞噬堆栈跟踪似乎是fixed中1.0.0的Winstone错误。试一试,它现在应该显示问题的真正原因。
更新2 ,真正的原因似乎是NoClassDefFoundError
上的org.slf4j.loggerFactory
。然而,Mojarra没有以任何方式使用它。堆栈跟踪还表明在加载任何侦听器之前发生了这种情况。换句话说,这可能是一个不同的问题,与Winstone有关。显然,Winstone 本身需要该库。将其添加到Winstone的运行时类路径中,而不是/WEB-INF/lib
。