我正在构建一个Spring 3,JSF 2,OSGi(Virgo Tomcat 3.5.0.M03)应用程序。
目前我有一个主机Web包和一个片段包。
片段包将一些.xhtml
JSF页面(facelets)添加到主机。片段中的JSF页面有自己的UI控制器(Spring bean使用action属性绑定到commandButton)。
我在我的主机(网络应用)包<context:component-scan base-package="my.scan.package" />
中使用applicationContext.xml
配置了Spring bean。
现在虽然context:component-scan
适用于主机包(即发现了充当UI控制器的Spring bean),但在片段包的情况下它会失败:
javax.el.PropertyNotFoundException: /flow-deployer-db.xhtml @20,50 action="#{uiControllerDb.deployFlow()}": Target Unreachable, identifier 'uiControllerDb' resolved to null
com.sun.faces.facelets.el.TagMethodExpression.invoke(TagMethodExpression.java:107)
因此,虽然片段应该是与其主机相同的类路径的一部分,并且ui控制器类在片段中声明为:
package my.scan.package;
...
@Component("uiControllerDb")
public class UIControllerDb implements Serializable {
无法解析片段中的bean(在主机包中工作时):
<h:commandButton id="deployFlow" value="Deploy Flow" type="submit"
action="#{uiControllerDb.deployFlow()}" />
从主机包的MANIFEST.MF
...
Bundle-SymbolicName: web.host
Bundle-Version: 4.0.0.alpha
Require-Bundle: org.glassfish.com.sun.faces
Import-Package: javax.naming,javax.sql
Import-Bundle: org.eclipse.virgo.web.dm;version="[3.0.2.RELEASE,4)"
Import-Library: org.springframework.spring;version="[3.0,3.1.1)"
Bundle-Name: Web Host bundle
Web-ContextPath: /webHost
从片段MANIFEST.MF中提取:
Bundle-SymbolicName: my.fragment.bundle
Bundle-Version: 4.0.0.alpha
Import-Library: org.springframework.spring;version="[3.0,3.1.1)"
Fragment-Host: web.host;bundle-version=4.0.0.alpha
如何让JSF解析片段中的Spring bean? 任何指针都表示赞赏。感谢。
faces-config.xml中:
<faces-config xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_2_0.xsd"
version="2.0">
<application>
<el-resolver>org.springframework.web.jsf.el.SpringBeanFacesELResolver</el-resolver>
</application>
</faces-config>
的web.xml:
<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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_3_0.xsd"
version="3.0">
<context-param>
<param-name>contextClass</param-name>
<param-value>org.eclipse.virgo.web.dm.ServerOsgiBundleXmlWebApplicationContext</param-value>
</context-param>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<listener>
<listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
</listener>
<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>/faces/*</url-pattern>
</servlet-mapping>
</web-app>
答案 0 :(得分:0)
好的,我找到了答案。 Spring上下文是在应用程序启动时创建的 - 因此使用Spring bean添加片段不会自动更新上下文。 弹跳容器(Virgo)似乎解决了这个问题 - 片段中带注释的bean成为统一主机片段上下文的一部分。
事情是,我希望在部署片段时发生这种情况,因为Virgo无论如何都会在部署片段时刷新(停止和重新启动)主机束。