JSF2 +日食 + Glassfish奇怪的输出问题

发布于 2024-12-04 22:11:49 字数 1119 浏览 0 评论 0原文

我尝试在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

独自←快乐 2024-12-11 22:11:49

检查 web.xml 中是否有 Faces Servlet

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

然后确保您的 URL 包含 faces 前缀,例如 http: //localhost:8080/faces/index.xhtml

Check that you have the Faces Servlet in your web.xml:

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

Then make sure that your URL contains faces prefix, like http://localhost:8080/faces/index.xhtml.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文