0

宿題用の単純な Java Bean/xhtml セットアップを設計しようとしています。実装は単純に見えますが、GlassFish に Java Bean から情報を取得して HTML に表示させることができません。

コードを書き、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>

root/WEB-INF/classes/com/stansbury/ にある properties.java ファイルを次に示します。

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;
}

}

root/WEB-INF/ にある私の web.xml ファイルは次のとおりです。

<?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>

最後になりましたが、root/META-INF にある faces-config.xml ファイル:

<?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>

画面に「The System's os name is」と表示され、その後空白になります。他の 2 つの値についても同様です。System.getProperties が自分のコンピューターで確実に機能するように、従来のアプリケーションを作成しました。また、念のため、さまざまな文字列で properties.VALUES を初期化しました。私はこれで過去6時間壁に頭をぶつけていました. 繰り返しますが、これはすべて、私が調査したさまざまなチュートリアル、教科書、YouTube ビデオに基づいて、理にかなっているように思えます。どんな洞察も素晴らしいでしょう!

4

2 に答える 2

1

これは、 ELを使用して Bean プロパティにアクセスする間違った方法です。

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

そのはず

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

は getter であるためgetJavaVersion()、EL はプロパティを探しjavaVersionます。他の分野についても同様です。Bean クラスがある場合:

public class Foo {
   int bar;

   public int getBar(){
     return bar;
   }
}

barプロパティは としてアクセスする必要があります#{bean.bar}

于 2013-06-13T08:29:19.773 に答える
0

Bean フィールドにアクセスするには、EL 言語を使用する必要があります。つまり、Bean のゲッターを呼び出すには、ゲッター メソッドを使用する必要がありますが、標準のプレフィックスである get/is は使用しません。したがって、xhtml で使用する必要があります。

properties.javaVersion
properties.osName
properties.osVersion

xhtml はフィールドから直接値を読み取らず、getter メソッドのみを読み取ることに注意してください。

于 2013-06-13T08:37:57.743 に答える