@ManagedProperty在CDI托管bean中不起作用

时间:2013-06-30 13:23:00

标签: jsf null cdi managed-property

我尝试学习JSF并遇到与ManagedProperty相关的问题。但是我试图使用它,它总是失败 - null异常指针。我做错了什么? 我在stackoverflow上读过一些“类似的帖子”,但它们对我没有帮助。 (我使用GlassFish 4.0,JSF 2.2,JDK 1.7,Netbeans 7.3.1(Java EE pack)和Java EE 6.0)

<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:h="http://xmlns.jcp.org/jsf/html">
    <h:head>
    <title>Facelet Title</title>
    </h:head>
    <h:body>
    Hello from Facelets
    <br/>
    User: #{books.user.name}<br/>
    1: #{param.pageId}<br/>
    2: #{books.pageId}<br/>
    <h:form>
        <h:inputText value="#{user.name}" /><br/>
        <h:inputText value="#{books.v1}" /><br/>
        <h:inputText value="#{books.v2}" /><br/>
        <h:inputText value="#{books.result}" /><br/>
        <h:commandButton value="dodaj" action="#{books.add}" />
    </h:form>
    </h:body>
</html>

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package tpsa.books.managed;

import javax.inject.Named;
import javax.enterprise.context.RequestScoped;
import javax.faces.bean.ManagedProperty;

/**
 *
 * @author tomasz
 */
@Named(value = "books")
@RequestScoped
public class Books {

    private int v1;
    private int v2;
    private int result;
    @ManagedProperty(value = "#{user}")
    private User user;

    @ManagedProperty(value="#{param.pageId}")
    private int pageId;

    /**
     * Creates a new instance of Books
     */
    public Books() {
    }

    public void add() {
    result = v1 + v2;

    }

    public int getV1() {
    return v1;
    }

    public void setV1(int v1) {
    this.v1 = v1;
    }

    public int getV2() {
    return v2;
    }

    public void setV2(int v2) {
    this.v2 = v2;
    }

    public int getResult() {
    return result;
    }

    public void setResult(int result) {
    this.result = result;
    }

    public User getUser() {
    if (user == null) {
        System.err.println("WTF");
    }
    return user;
    }

    public void setUser(User user) {
    this.user = user;
    }

    public int getPageId() {
    return pageId;
    }

    public void setPageId(int pageId) {
    this.pageId = pageId;
    }



}

用户

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package tpsa.books.managed;

import javax.inject.Named;
import javax.enterprise.context.SessionScoped;
import java.io.Serializable;

/**
 *
 * @author tomasz
 */
@Named(value = "user")
@SessionScoped
public class User implements Serializable {

    private String name;

    /**
     * Creates a new instance of User
     */
    public User() {
    }

    public String getName() {
    return name;
    }

    public void setName(String name) {
    this.name = name;
    }



}

1 个答案:

答案 0 :(得分:6)

@ManagedProperty是托管bean注释,不能与CDI一起使用。在上面的代码中,您使用了CDI bean,即JSF 2.2中默认的@Named。在这种情况下,您无法使用ManagedProperty。请阅读从ManagedBean的Java EE文档复制的以下行。

  

如果此注释出现在没有该注释的类上   ManagedBean注释,实现必须对此不采取任何操作   注释

有关详细信息,请参阅链接:

http://docs.oracle.com/javaee/6/api/javax/faces/bean/ManagedProperty.html

因此,对CDI bean使用@Inject而不是@ManagedProperty

@Inject
private User user;

请注意,这里不需要getter / setter。