JSF 2使用@ManagedProperty注入Spring bean / service而没有xml

时间:2012-01-19 11:21:15

标签: java spring jsf jsf-2 annotations

我想使用jsf注释和一些弹簧 将spring bean / service注入jsf托管bean的注释。 (在jsf bean上我只想使用jsf注释) 我不想使用@named / @inject等注释。

我试图在网上找到一个解决方案,但没有运气。

实施例

@ManagedBean
@ViewScoped 
public class MyBean {

    @ManagedProperty(value = "#{mySpringBean}")
    private MySpringBean mySpringBean;

    public void setMySpringBean(MySpringBean mySpringBean) {
        this.mySpringBean = mySpringBean;
    }

    public void doSomething() {
    //do something with mySpringBean
    }
}

如果没有使用xml,这样的事情是可能的。例如, 我不想使用像

这样的东西
FacesContextUtils.getWebApplicationContext(context).getBean("MySpringBean");

faces-config.xml

<managed-bean>
    <managed-bean-name>myBean</managed-bean-name>
    <managed-bean-class>com.mytest.MyBean</managed-bean-class>
    <managed-bean-scope>view</managed-bean-scope>
    <managed-property>
        <property-name>mySpringBean</property-name>
        <value>#{mySpringBean}</value>
    </managed-property>
</managed-bean>

类似上述内容可能带有注释而没有注释 定义所有jsf bean /属性和spring bean /属性 config xml文件中的每个bean?

3 个答案:

答案 0 :(得分:14)

如果您已经拥有Spring容器,为什么不使用它的@Autowired注释。为此,按照Boni的建议更新faces-config.xml。然后在这之后将这些监听器添加到您的web.xml

<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>

然后将这些添加到您的applicationContext.xml

<context:component-scan base-package="com.examples" />

现在你可以使用Spring注释,你的bean将是这样的:

package com.examples;
@Component
@Scope(value="request")
public class MyBean {
    @Autowired
    private MySpringBeanClass mySpringBean;
}

使用@Service

注释MySpringBeanClass

另见:

答案 1 :(得分:11)

将此代码放在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>

然后在ManageBean Constructor中调用;

WebApplicationContext ctx =  FacesContextUtils.getWebApplicationContext(FacesContext.getCurrentInstance());
mySpringBean = ctx.getBean(MySpringBean.class);

MySpringBean意味着你的Spring Bean Class

答案 2 :(得分:3)

假设您已在web.xml和applicationContext.xml中正确配置了Spring。 在faces-config.xml

中进行以下输入
<application>
     <el-resolver>org.springframework.web.jsf.el.SpringBeanFacesELResolver</el-resolver>
</application>

上面给出的示例代码似乎很好。上面的条目会发生什么,Managed Property将首先在JSF管理的bean中查找,如果找不到将在Spring管理的bean中搜索。你的spring bean应该标记正确的注释,并且@ManagedProperty中给出的名称应该与给bean的默认/名称匹配。

如@Boni所述,不需要它是自动注入的。我已按你的意愿使用了设置。

附注:由于您选择查看范围,请查看此链接The benefits and pitfalls of @ViewScoped