无法从jsf-resource-library查找或提供本地化资源

时间:2016-06-08 16:30:59

标签: jsf jsf-2 localization resources outputstylesheet

我试图从书中复制一个例子,

可以从下面附带的图像中看到结构 -

已更新

enter image description here

将使用库的视图如下所示 -

<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:h="http://xmlns.jcp.org/jsf/html"
      xmlns:f="http://xmlns.jcp.org/jsf/core">
    <h:head>
        <title></title>
        <h:outputStylesheet library="#{facesContext.viewRoot.locale}/default" name="css/rafa.css"/>
        <h:outputScript library="#{facesContext.viewRoot.locale}/default" name="rafa.js"/>        
    </h:head>
    <h:body>   
        <f:view locale="#{localeBean.mylocale}">     
            <div style="width:100%; text-align:center">
                <h:form>
                    <h:commandButton value="Rafa at Roland Garros" action="#{localeBean.changeLocale('fr')}"/>
                    <h:commandButton value="Rafa at Wimbledon" action="#{localeBean.changeLocale('en')}"/>
                    <h:commandButton value="Rafa at US Open" action="#{localeBean.changeLocale('us')}"/>
                    <h:commandButton value="Rafa at Australian Open" action="#{localeBean.changeLocale('au')}"/>
                </h:form>
            </div>
            <div style="width:100%; text-align:center">
                <!--<h:graphicImage library="#{facesContext.viewRoot.locale}/default" name="img/rafa.png"/> -->
                <h:graphicImage value="#{resource[facesContext.viewRoot.locale+='/default:img/rafa.png']}"/>
            </div>
        </f:view>
    </h:body>
</html>

@Named
@RequestScoped
public class LocaleBean {

    private String mylocale = "fr";
    // getters & setters
}

我正在使用内部使用Glassfish 4.1.1 Application Server的{​​{1}},

Mojarra 2.2.12是 -

rendered HTML

渲染html中感兴趣的相对网址 -

<html xmlns="http://www.w3.org/1999/xhtml">
    <head id="j_idt2">
        <title></title>
        <script type="text/javascript" src="/glassfish-ee/javax.faces.resource/rafa.js.xhtml?ln=fr/default&amp;v=1_01_2">
        </script><link type="text/css" rel="stylesheet" href="/glassfish-ee/javax.faces.resource/css/rafa.css.xhtml?ln=fr/default&amp;v=1_0" />
    </head>
    <body>     
        <div style="width:100%; text-align:center">
        <form id="j_idt8" name="j_idt8" method="post" action="/glassfish-ee/ch5/ch5_12/index.xhtml" enctype="application/x-www-form-urlencoded">
            <input type="hidden" name="j_idt8" value="j_idt8" />
            <input type="submit" name="j_idt8:j_idt9" value="Rafa at Roland Garros" />
            <input type="submit" name="j_idt8:j_idt10" value="Rafa at Wimbledon" />
            <input type="submit" name="j_idt8:j_idt11" value="Rafa at US Open" />
            <input type="submit" name="j_idt8:j_idt12" value="Rafa at Australian Open" />
            <input type="hidden" name="javax.faces.ViewState" id="j_id1:javax.faces.ViewState:0" value="---somevalue---" autocomplete="off" />
        </form>
        </div>
            <div style="width:100%; text-align:center">
                <!--&lt;h:graphicImage library="fr/default" name="img/rafa.png"/&gt; -->
                <img src="/glassfish-ee/javax.faces.resource/img/rafa.png.xhtml?ln=fr/default&amp;v=1_0" />
            </div>
    </body>
</html>

在控制台上,我得到了这个 -

http://localhost:8080/glassfish-ee/javax.faces.resource/rafa.js.xhtml?ln=fr/default&v=1_01_2
http://localhost:8080/glassfish-ee/javax.faces.resource/css/rafa.css.xhtml?ln=fr/default&v=1_0
http://localhost:8080/glassfish-ee/javax.faces.resource/img/rafa.png.xhtml?ln=fr/default&v=1_0

Google Chrome的控制台标签显示 -

enter image description here

最后,我哪里错了?
请建议。

在获得下面建议的答案的帮助后,进行更改,

enter image description here

带条目 -

2016-06-08T20:54:52.672+0530|WARNING: JSF1064: Unable to find or serve resource, rafa.js, from library, fr/default.
2016-06-08T20:54:52.673+0530|WARNING: JSF1064: Unable to find or serve resource, css/rafa.css, from library, fr/default.
2016-06-08T20:54:52.717+0530|WARNING: JSF1064: Unable to find or serve resource, img/rafa.png, from library, fr/default.
2016-06-08T20:54:57.570+0530|WARNING: JSF1064: Unable to find or serve resource, css/rafa.css, from library, fr/default.
2016-06-08T20:56:05.587+0530|WARNING: JSF1064: Unable to find or serve resource, img/rafa.png, from library, fr/default.
2016-06-08T20:56:09.542+0530|WARNING: JSF1064: Unable to find or serve resource, img/rafa.png, from library, fr/default.

使用GET请求访问该页面时,由于上面所附结构中javax.faces.resource.localePrefix=fr 文件中的1_2.js文件中的以下条目,系统会弹出警告。

selected

enter image description here

即使在我按下所需的alert("J'ai gagné Roland Garros ...(resources/fr/1_0/css/js/rafa.js/1_2.js)"); 更改了locale后,我也会看到相同的提醒弹出。

为什么呢?还需要做些什么?提前谢谢。

1 个答案:

答案 0 :(得分:4)

资源本地化功能在JSF specification中的记录非常糟糕。与您直观期望的相反,本地化子文件夹将不会与<f:view locale>匹配。相反,它们将与使用值ResourceHandler.LOCALE_PREFIX标识的<message-bundle>条目进行匹配,其值javax.faces.resource.localePrefix。此外,您不需要在#{view.locale}属性中明确包含library

为了让它发挥作用,请确保您已在<message-bundle>中声明了faces-config.xml

<application>
    <message-bundle>com.example.i18n.YourBundle</message-bundle>
</application>

并确保它至少包含以下条目:

javax.faces.resource.localePrefix=fr

然后你可以通常的方式引用资源,而不会出现任何混乱的语言环境前缀和版本后缀。

<h:outputStylesheet library="default" name="css/rafa.css" />
<h:outputScript library="default" name="rafa.js" />

我承认这可以做得更好。如果未指定<message-bundle>和/或javax.faces.resource.localePrefix不存在,那么它应该简单地回退到UIViewRoot#getLocale()。尽管如此,这肯定是最稀有的JSF功能之一。我坦率地说,直到今天才开始尝试,我认为我不会在现实世界的应用程序中使用它。