1

我在 JBOSS 6、Eclipse、JSF MOJARRA 中遇到了这个奇怪的问题。

所以这是我的 index.xhtml:

<!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"
     >

    <!-- 
        Replace path to template, title, header and body
        with actual data.
     -->
    <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="welcome"></h:commandButton>
        </h:form>

    </h:body>

</html>

在执行中,我只有页面的标题,没有输入文本,没有按钮。请帮我!

4

1 回答 1

3

看起来您的页面无法解析。你应该检查你的 faces-config.xml 是否有这行代码

 < view-handler>com.sun.facelets.FaceletViewHandler< /view-handler> 
(擦除空格)并且您的库必须具有 jsf-facelets.jar 。

于 2012-04-15T08:22:05.417 回答