@Scope(“请求”)无效

时间:2012-09-18 04:44:46

标签: spring jsf-2 scope request

我正在尝试使用JSF和Primefaces(JSF 2.0.2,PrimeFaces 3.0.5,Spring 3.0.0)。看来我无法从xhtml页面访问托管bean,例如

<h:inputText  id="lastName" value="#{personalBean.personal_Basic.firstName}"  label="Last Name"  required="true" />

请求从命令链接调用bean方法,服务开始并返回页面。我可以在服务器控制台Bean中看到,服务方法被执行。当我尝试使用如上所述的bean属性时,我没有看到任何内容。但是,我能够访问用于会话管理的会话范围bean。

对不起,如果这个问题太天真了。非常感谢任何解决问题的输入。

以下是我的代码剪辑。这就是我调用bean的方式:

<h:form>
    <p:commandLink id="ajax" actionListener="#{personalBean.getPersonalInfo}" style="margin-left:5px;">  
        <h:outputText value="Personal Info" />  <br/>
    </p:commandLink>  
</h:form>

以下是请求范围的托管bean。

package com.test.model;
@ManagedBean
@Scope("request")
public class PersonalBean  implements Serializable {

private static final long serialVersionUID = 199L;
private Personal_Basic personal_Basic;
private IPersonalService personalService;

@Inject
public PersonalBean(final IPersonalService personalService) {
    this.personalService = personalService;
}
public String getPersonalInfo() {
    System.out.println("\n\nPersonalBean#getPersonalInfo called...**");
    User user = null;
    Personal_Basic personal_Basic = personalService.getPersonalBasic();
    this.setPersonal_Basic(personal_Basic);
    System.out.println("personal_Basic data:"+personal_Basic);
    System.out.println("PersonalBean#getPersonalInfo ended...");
    return "/page/personal.html";
}
// Getters/setters for class members followed
}

PersonalService实现使用@Service注释。

以下是spring配置xml的摘录。

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:p="http://www.springframework.org/schema/p"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="
       http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
       http://www.springframework.org/schema/tx
       http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
       http://www.springframework.org/schema/aop
       http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
       http://www.springframework.org/schema/context
       http://www.springframework.org/schema/context/spring-context-3.0.xsd">
    <context:annotation-config/> 
    <context:component-scan base-package="com.test"/>
...................
...................
</beans>

以下是faces-config.xml

的摘录
<?xml version="1.0"?>
<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>
        <resource-bundle>
            <base-name>Messages</base-name>
            <var>msg</var>
        </resource-bundle>
        <locale-config>
            <default-locale>en</default-locale>
        </locale-config>
  </application>
...........................
</faces-config>

2 个答案:

答案 0 :(得分:4)

<context:component-scan base-package="com.test"/>元素默认扫描并注册所有使用@ Component,@ Repository,@ Service或@Controller注释的bean。

Spring还提供对javax.annotation.ManagedBean(非javax.faces.bean.ManagedBean)和JSR-330标准注释的支持,这些注释也由Spring扫描,但您需要在项目中添加以下依赖项。

<dependency>
    <groupId>javax.inject</groupId>
    <artifactId>javax.inject</artifactId>
    <version>1</version>
</dependency>

您可以看到Spring注释here的所有等效注释,因为您可以看到@Component的等价于@Named,并且范围使用Springs @Scope注释而不是javax.inject.scope。 因此,如果您希望 Spring管理应用程序中的所有bean,您可以使用@Component@Namedjavax.annotation.ManagedBean注释,并使用@Autowired或@注入它们注入。

对于你的问题,为什么用javax.faces.bean.ManagedBean注释的bean似乎被初始化但是不起作用是因为正如@BalusC所提到的,JSF不支持@Inject,你必须使用@ManagedProperty注释。

关于Spring和JSF如何运作的一些背景知识:

实际上,当应用程序启动时,您的应用程序中有两个IOC容器,其中包含JSF和Spring。 首先,在faces-config.xml中配置的org.springframework.web.jsf.el.SpringBeanFacesELResolver委托Spring根目录WebApplicationContext首先解析对Spring定义的bean的名称引用,然后委托给底层JSF实现的默认解析器。

现在首次查找JSF bean时,会构造它,然后通过setter方法设置托管属性,这样就可以使用@ManagedProperty注释注入一个Spring bean,如下所示:

package com.test.model;
@ManagedBean
@RequestScoped
public class PersonalBean  implements Serializable {
@ManagedProperty(value="#{personalService}")
private IPersonalService personalService;
public IPersonalService getPersonalService() {
    return personalService;
}

public void setPersonalService(IPersonalService personalService) {
    this.personalService= personalService;
}

或者您也可以使用

手动获取Spring bean 像这样的

org.springframework.web.context.support.WebApplicationContextUtils

private Object getSpringBean(String name){
        WebApplicationContext ctx = WebApplicationContextUtils.getRequiredWebApplicationContext(
                (ServletContext) FacesContext.getCurrentInstance().getExternalContext().getContext());
        return ctx.getBean(name);
}

并像这样使用它:

Personal_Basic personal_Basic = ((IPersonalService) getSpringBean("personalService")).getPersonalBasic();

但是,不是在应用程序中使用两个容器,您可以使用Spring容器通过使用@Component注释JSF bean来管理所有bean,并且没有任何含义,因为我知道并且应该完全可以使用春天注释。

另见:

答案 1 :(得分:0)

你不能将@ManagedBean与spring范围混合,你必须在@ManagedBean和@RequestScope或@Componenet和@Scope(&#34; session&#34;)之间进行选择