我在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>
在执行中我只得到了页面的标题,没有输入文本,没有按钮。 请帮帮我!
答案 0 :(得分:3)
它看起来无法解析您的页面。你应该检查你的faces-config.xml是否有这行代码
< view-handler>com.sun.facelets.FaceletViewHandler< /view-handler>
(擦除空格),你的lib必须有jsf-facelets.jar。