目标无法访问,标识符'helloBean'已解析为null

时间:2014-01-18 07:18:37

标签: jsf

是Java EE的新手,并尝试使用一个简单的JSF 2教程示例。

我在eclipse中使用动态Web项目并发布到Glassfish 3服务器(运行 - >在服务器上运行)。第一个index.xhtml页面正确加载,但是当我必须访问托管bean时,会显示以下错误:

/index.xhtml @ 14,48 value =“#{helloBean.name}”:目标无法访问,标识符'helloBean'已解析为null

我已经看过关于这个主题的各种其他讨论,但是这些解决方案对我来说似乎不起作用(例如,添加beans.xml,根据命名约定给托管bean命名等)。

任何帮助都会受到赞赏,因为我已经坚持了一段时间。

以下是我目前正在使用的代码:

Index.xhtml:

<?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:f="http://java.sun.com/jsf/core"      
      xmlns:h="http://java.sun.com/jsf/html">

    <h:head>
        <title>JSF 2.0 Hello World</title>
    </h:head>
    <h:body>
        <h3>JSF 2.0 Hello World Example - hello.xhtml</h3>
        <h:form>
           <h:inputText value="#{helloBean.name}"></h:inputText>
           <h:commandButton value="Welcome Me" action="response"></h:commandButton>
        </h:form>
    </h:body>
</html>

response.xhtml:

    <?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://java.sun.com/jsf/html">

        <h:head>
            <title>JSF 2.0 Hello World</title>
        </h:head>
        <h:body bgcolor="white">
            <h3>JSF 2.0 Hello World Example - welcome.xhtml</h3>
            <h4>Welcome #{helloBean.name}</h4>
        </h:body>
    </html>

托管bean:

 package java.hello1;
    import javax.faces.bean.ManagedBean;
    import javax.faces.bean.SessionScoped;
    import java.io.Serializable;


        @ManagedBean
        @SessionScoped
        public class HelloBean implements Serializable {

            private static final long serialVersionUID = 1L;

            private String name = "Ricardo";

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

2 个答案:

答案 0 :(得分:0)

通过“@Named”

更改“@ManagedBean”

答案 1 :(得分:0)

如果有人偶然发现这个旧线程,我通过将.name替换为.getName()来获得代码工作//变量是私有的,而getName()是公共的