JSF不更新变量

时间:2014-04-05 15:24:47

标签: java xml jsf jsf-2

我在Java Server Faces(JSF)中实现了一个网页,我遇到了问题。首先,我将展示我的代码,仅显示此问题的相关代码。

在ProblemDomainModel中,有User类

public class User implements java.io.Serializable{
    private String name;

    public String getName(){
        return name;
    }

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

现在为UserBean类:

import javax.faces.bean.SessionScoped;
import javax.inject.Named;    

@Named("UserB")
@SessionScoped
public class UserBean implements java.io.Serializable{
    private User singleUser = new User();

    public UserBean(){}

    public String logIn() throws Exception{        
        singleUser = Loader.loadSingleUserOnID(1);
        return "mainPage";
    }

    public User getSingleUser{
        return singleUser;
    }

    public setSingleUser(User singleUser){
        this.singleUser = singleUser;
    }
}

现在我到目前为止已经制作了两个xhtml页面:

的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:h="http://xmlns.jcp.org/jsf/html">
    <h:head>
        <title>Facelet Title</title>
    </h:head>
    <h:body>
        <h:form>
            <p>Weclome to the Web Page. Press "Log In" to log in.</p>
            <p><h:commandButton value = "Log In" action = "#{UserB.logIn}"/></p>
        </h:form>
    </h:body>
</html>

mainPage.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://xmlns.jcp.org/jsf/html">
    <h:head>
        <title>Facelet Title</title>
    </h:head>
    <h:body>
        <h:form>
            Welcome back, <h:outputText value="#{UserB.singleUser.name}"/>.
        </h:form>
    </h:body>
</html>

当应用程序启动时,会显示带有欢迎文本和“登录”按钮的网页。按下该按钮时,将调用UserBean中的logIn() - 方法,并更新singleUser。静态方法Loader.loadSingleUserOnID()基于数据库中的ID号从数据库加载用户。该方法已经过测试并且有效,因此我不会在此详细介绍。 在调试模式下运行时,我也看到对象singleUser确实得到了更新,并更改了它的名称变量。

当用户点击按钮时,他/她应该到达下一页,说“欢迎回来,John Doe。” (“John Doe”是名字 - 字符串)。 相反,这被看到:“欢迎回来,”。

我还使用UserBean中的其他字符串进行了一些测试。假设我使用一个名为testString的字符串(带有getTestString()和setTestString(String testString),初始值为“THIS IS A HOAX”,而logIn()方法应该将其更改为“Elvis已离开建筑物!”如果我用这个替换原始输出:“欢迎回来,应该打印出来的是”欢迎回来,猫王已经离开了大楼!“,而是我得到”欢迎回来,这是一个HOAX。“

正如我所说,当在调试模式下运行并读取对象上的值时,值会发生变化。但不知何故,旧的价值仍留在系统中,因为它打印在网页上。 我的主要问题是:我做错了什么? (注意:我在本页底部还有第二个问题)

我还将添加beans.xml,faces-config.xml和web.xml的内容,以防你看到我做错的事情:

beans.xml中:

<?xml version="1.0" encoding="UTF-8"?>
<beans 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/beans_1_0.xsd">
</beans>

faces-config.xml中:

<?xml version='1.0' encoding='UTF-8'?>
<faces-config version="2.2"
    xmlns="http://xmlns.jcp.org/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-facesconfig_2_2.xsd">

    <navigation-rule>
        <navigation-case>
            <from-outcome>index</from-outcome>
            <to-view-id>/index.xhtml</to-view-id>
        </navigation-case>
    </navigation-rule>

    <navigation-rule>
        <navigation-case>
            <from-outcome>mainPage</from-outcome>
            <to-view-id>/mainPage.xhtml</to-view-id>
        </navigation-case>
    </navigation-rule>

</faces-config>

的web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.1" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd">
    <context-param>
        <param-name>javax.faces.PROJECT_STAGE</param-name>
        <param-value>Development</param-value>
    </context-param>
    <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>
    <session-config>
        <session-timeout>
            30
        </session-timeout>
    </session-config>
    <welcome-file-list>
        <welcome-file>faces/index.xhtml</welcome-file>
    </welcome-file-list>
</web-app>

所以再一次,我问:我做错了什么?如何确保变量保持更改,以便在网页上显示?

我还有一个次要问题:我何时使用@Inject,何时不使用?

谢谢。

1 个答案:

答案 0 :(得分:1)

UserBean班级中,您使用错误的@SessionScoped注释与CDI @Named。使用

 import javax.enterprise.context.SessionScoped;

而不是

 import javax.faces.bean.SessionScoped;