2013-06-13 80 views
0

我正在嘗試爲作業分配設計一個簡單的java bean/xhtml設置。實現看起來很簡單,但我無法讓GlassFish從java bean中獲取信息並將其顯示在HTML中。Java Bean getter未返回值

我寫了我的代碼,然後創建了一個war文件並將其加載到GlassFish autodeploy中。

這裏的index.xhtml:

<?xml version="1.0" encoding="UTF-8"?> 
<html xmlns="http://www.w3.org/1999/xhtml" 
    xmlns:h="http://java.sun.com/jsf/html"> 
    <h:head> 
     <title>System information</title> 
    </h:head> 
    <h:body> 
     <h:form> 
     <p>   
      This system's java version is #{properties.getJavaVersion} 
     </p> 
     <p> 
     This sytem's OS Name is #{properties.getOsName} 
     </p> 
     <p> 
     This System's OS version is #{properties.getOsVersion} 
     </p> 
    </h:form> 
    </h:body> 
</html> 

這裏是我的properties.java文件位於根/ WEB-INF /班/ COM/stansbury/

package com.stansbury; 

import javax.faces.bean.ManagedBean; 
import javax.faces.bean.ViewScoped; 

@ViewScoped 
@ManagedBean 

public class Properties { 

public String javaVersion; 
public String osName; 
public String osVersion; 

public String getJavaVersion() { 
    javaVersion = System.getProperty("java.version"); 
    return javaVersion; 
} 

public String getOsName() { 
    osName = System.getProperty("os.name"); 
    return osName; 
} 

public String getOsVersion() { 
    osVersion = System.getProperty("os.version"); 
    return osVersion; 
} 

} 

這裏是我的網頁。位於根/ xml文件WEB-INF/

<?xml version="1.0" encoding="UTF-8"?> 
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns="http://java.sun.com/xml/ns/javaee" 
    xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" 
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
    http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" 
    version="2.5"> 
<servlet> 
    <servlet-name>Faces Servlet</servlet-name> 
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class> 
</servlet> 
<servlet-mapping> 
    <servlet-name>Faces Servlet</servlet-name> 
    <url-pattern>/faces/*</url-pattern> 
</servlet-mapping> 
<welcome-file-list> 
    <welcome-file>faces/index.xhtml</welcome-file> 
</welcome-file-list> 
<context-param> 
    <param-name>javax.faces.PROJECT_STAGE</param-name> 
    <param-value>Development</param-value> 
</context-param> 
</web-app> 

最後但並非最不重要我faces-config.xml文件位於根/ META-INF:

<?xml version="1.0" encoding="UTF-8"?> 
<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"> 
</faces-config> 

我在屏幕上看到的是「系統的os名稱」,然後是空白。其他兩個值也是一樣的。我創建了一個傳統的應用程序來確保System.getProperties在我的電腦上工作。我還用不同的字符串初始化了屬性.VALUES,只是爲了確保。在這一個過去的六個小時裏,我一直把我的頭撞在牆上。再次,這一切似乎應該基於我研究的不同教程,教科書和YouTube視頻。任何見解都會很棒!

回答

1

這是訪問使用EL bean屬性錯誤的方式:

This system's java version is #{properties.getJavaVersion} 

應該

This system's java version is #{properties.javaVersion} 

由於getJavaVersion()是吸氣,因此EL將尋找javaVersion財產。同樣適用於其他領域。如果你有一個bean類:

public class Foo { 
    int bar; 

    public int getBar(){ 
    return bar; 
    } 
} 

bar屬性應該爲#{bean.bar}進行訪問。

+0

嘗試睡覺後,我決定嘗試幾個 – user2481291

+0

我應用了這些設置,但它仍然無法使用。我決定嘗試一個完全準備就緒的設置,我使用教科書作者的逐字記錄,將其打包成WAR文件並加載到Glassfish中。難道我是如何打包文件的?我只需輸入命令「jar csv getProperties.war」。命令從根目錄。我爲這本書附帶的軟件包做了相同的過程。任何一個戰爭包都不能正確部署,因爲沒有一個獲得者會返回任何東西。可以在我的主機系統上配置我需要配置的基本設置。 – user2481291

+0

我道歉,我使用的命令是:jar cvf getProperties.war。 – user2481291

0

您必須使用EL language才能訪問bean字段。 這意味着要調用bean的getter,你必須使用getter方法,但不要使用標準前綴,即get/is。 因此,你應該在XHTML中使用:

properties.javaVersion 
properties.osName 
properties.osVersion 

請注意XHTML不直接從字段讀取值,它只能讀取干將方法。