0

这是我的项目结构: eclipse项目结构

这是我的 HelloWorld.java

 package com.tutorialspoint.test;
 import javax.faces.bean.ManagedBean;
 import javax.faces.bean.RequestScoped;
 @ManagedBean(name = "helloWorld")
 @RequestScoped
 public class HelloWorld
    {
       public HelloWorld()
        {
           System.out.println("HelloWorld started!");
        }
      public String getMessage() 
        {
          return "JSF2!";
        }
    }

这是我的 index.xhtml

            <?xml version="1.0" encoding="ISO-8859-1" ?>
            <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
            <html lang="en"
                xmlns="http://www.w3.org/1999/xhtml"
                xmlns:ui="http://java.sun.com/jsf/facelets"
                xmlns:f="http://java.sun.com/jsf/core"
                xmlns:h="http://java.sun.com/jsf/html">
            <h:head>
            <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
            <title>Insert title here</title>
            </h:head>
            <h:body>
            HEllo form  <h:outputLabel value="#{helloWorld.getMessage()}"  />
            </h:body>

            </h:body>
            </html>

输入 localhost:8080/demojsf/ 后得到的输出是 HELLO 形式,而不是来自 jsf2 的 HELLO。这里有什么问题?

4

3 回答 3

2

下面是使用h:outputLabelusing for属性的方式h:outputLabel

public class HelloWorld
    {
       public String message= "JSF2!";
       public HelloWorld()
        {
           System.out.println("HelloWorld started!");
        }
      public String getMessage() 
        {
          return message;
        }
   }

<h:outputLabel for="msgID" value="HEllo form " />
<h:outputText id="msgID" value="#{helloWorld.message}"/>
于 2013-07-26T04:46:56.453 回答
1

h:outputLabel 将调用属性的 getter 方法。所以修改如下代码,

<h:outputLabel value="#{helloWorld.message}"  />

请在下面为我找到一个工作代码示例,

<!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"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:a4j="http://richfaces.org/a4j"
    xmlns:rich="http://richfaces.org/rich">
<head>
<title>JSF Hello World</title>
</head>
<body>
    <f:view>
        <h:form>
            <h2>
                <h:outputLabel value="#{jsfHelloWorldBean.message}" />
            </h2>           
        </h:form>
    </f:view>
</body>
</html>

还有我的豆子

 package devmanuals;

    import javax.faces.bean.ManagedBean;
    import javax.faces.bean.RequestScoped;

    @ManagedBean(name="jsfHelloWorldBean")
    @RequestScoped
    public class JsfHelloWorldBean {
        //String message;
        public String getMessage(){
            return "JSF!2";
        }
    }
于 2013-07-26T07:10:51.133 回答
1

你的代码在我这边运行良好。我使用了 JSF2.1、JDK7 和 Netbeans 7.3,除了双</h:body>

于 2013-07-26T07:58:31.813 回答