JSF2 +日食 + Glassfish奇怪的输出问题
我尝试在 Eclipse indigo 中制作一个简单的 JSF2 应用程序。 我有一个非常简单的 ManagedBean(称为 HelloBean.java)
package server;
@ManagedBean
@RequestScoped
public class HelloBean {
private String name;
public HelloBean() {
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
,这是我的 index.xhtml:
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core">
<h:head><title>JSF 2.0 Hello World</title></h:head>
<h:form>
<h:inputText value="#{helloBean.name}"></h:inputText>
<h:commandButton value="Welcome me" action="welcome"></h:commandButton>
</h:form>
</html>
在 eclipse 中,我创建了一个名为 JSF2.0 的用户库,并添加了 jsf-api... 和 jsf-impl jar。在项目设置中,我选择了 JavaServer Faces。 当我发布这个真正的虚拟应用程序并检查浏览器时,我看到一个完全空白的页面。 只有标题还可以,其他内容就看不出来了。
我检查了服务器日志文件,没有警告没有错误,看起来没问题。
有什么问题吗?我错过了什么重要的事情吗?
感谢您的帮助!
I try to make a simple JSF2 application in Eclipse indigo.
I have a very simple ManagedBean (call HelloBean.java)
package server;
@ManagedBean
@RequestScoped
public class HelloBean {
private String name;
public HelloBean() {
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
And this is my index.xhtml:
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core">
<h:head><title>JSF 2.0 Hello World</title></h:head>
<h:form>
<h:inputText value="#{helloBean.name}"></h:inputText>
<h:commandButton value="Welcome me" action="welcome"></h:commandButton>
</h:form>
</html>
In eclipse I created an user library called JSF2.0 and added the jsf-api... and jsf-impl jars. In the projects setting I choosed JavaServer Faces.
When I publish this really dummy app, and check a browser I see a totally blank page.
Only the title is ok, but the rest of the content doesn't appears.
I checked the server log file, no warning no error, it looks ok.
What's the problem? Am I miss something important?
Thanks for the help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查
web.xml
中是否有Faces Servlet
:然后确保您的 URL 包含
faces
前缀,例如http: //localhost:8080/faces/index.xhtml
。Check that you have the
Faces Servlet
in yourweb.xml
:Then make sure that your URL contains
faces
prefix, likehttp://localhost:8080/faces/index.xhtml
.