8

我知道这篇文章,我仔细检查了那里的所有可能性。

我在 Glassfish 3 上使用带有 Mojarra 实现的 JSF 2.0。

我正在尝试使用两个简单<h:commandLink>的标签来更改应用程序语言。这是.xhtml页面:

<!DOCTYPE html>
<html lang="en"  xmlns="http://www.w3.org/1999/xhtml"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html">
<h:head>
    <title>
        <h:outputText value = "#{appMessage['page.welcome']}" />
    </title>

    <f:metadata>
        <f:event type = "preRenderView" listener = "#{sessionController.changeLanguage}" />
    </f:metadata>
</h:head>

<h:body>
    <h1><h:outputText value = "#{appMessage['text.slide.welcome']}" /></h1>

    <h:form id = "fm-language">
        <h:commandLink action = "#{sessionController.changeLanguage('en')}" value = "#{appMessage['link.english']}" />
        <h:commandLink action = "#{sessionController.changeLanguage('de')}" value = "#{appMessage['link.german']}" />
    </h:form>

</h:body>

这是 HTML 代码:

<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title>The Maze Project</title>
    </head>
    <body>
        <h1>Welcome</h1>
        <form id="fm-language" name="fm-language" method="post" action="/maze/welcome.xhtml" enctype="application/x-www-form-urlencoded">
            <input type="hidden" name="fm-language" value="fm-language" />
            <script type="text/javascript" src="/maze/javax.faces.resource/jsf.js.xhtml?ln=javax.faces">
            </script>
            <a href="#" onclick="mojarra.jsfcljs(document.getElementById('fm-language'),{'fm-language:j_idt13':'fm-language:j_idt13'},'');return false">English</a>
            <a href="#" onclick="mojarra.jsfcljs(document.getElementById('fm-language'),{'fm-language:j_idt15':'fm-language:j_idt15'},'');return false">Deutsch</a>            
            <input type="hidden" name="javax.faces.ViewState" id="javax.faces.ViewState" value="8038443616162706480:-1387069664590476821" autocomplete="off" />
        </form>
</body>

当按下 commandLink 时,什么都没有发生。没有向服务器发送请求,并引发以下 Java 脚本错误:

mojarra 未定义

bean 方法被正确调用并在应用程序的其余部分中正常工作。

4

2 回答 2

7

源代码和生成的 HTML 输出看起来不错,您在 JSF 源代码中有一个<h:head>(否则 JSF 无法自动包含任何 CSS/JS 文件),并且该javax.faces:jsf.js脚本存在于 HTML 输出中。

你说,你得到了一个未定义的 JS 错误mojarra。那只能意味着以下自动生成的脚本

<script type="text/javascript" src="/maze/javax.faces.resource/jsf.js.xhtml?ln=javax.faces">
</script>

没有得到有效的回应。反过来,这只能意味着您有一个Filter映射/*或以某种方式*.xhtml限制jsf.js资源请求的对象。也许一些本土的身份验证过滤器并没有完全正确地完成它的工作。尝试打开

http://localhost:8080/maze/javax.faces.resource/jsf.js.xhtml?ln=javax.faces

在您的浏览器中查看它实际检索到的内容(或使用 Web 开发人员工具检查响应)。如果它确实不是正确的响应并且问题确实出在 中Filter,那么您可能需要重写它,以便在请求 URI 以 开头时它应该继续链ResourceHandler.RESOURCE_IDENTIFIER

例如

HttpServletRequest req = (HttpServletRequest) request;

if (req.getRequestURI().startsWith(req.getContextPath() + ResourceHandler.RESOURCE_IDENTIFIER)) {
    chain.doFilter(request, response); // Let it continue.
    return;
}
于 2012-02-13T15:32:23.483 回答
1

尝试观察 Firebug 或类似的东西发生了什么,看看是否真的有服务器通信。由于它是一个 commandLink,请查看页面上是否有任何 javascript 错误。

你说,你没有得到任何信息日志,所以我认为请求甚至没有到达你的应用程序。

(我在您的 xhtml 文件中没有看到结束 html 标记,也许您只是没有粘贴它。)

于 2012-02-12T16:07:47.263 回答