gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-04 23:28:31 26 4
gpt4 key购买 nike

我正在尝试从一本书中复制一个例子,

结构可以从下面的图片中看出-

已更新

enter image description here

将使用该库的 View 就像下面给出的一样简单-

<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 ServerMojarra 2.2.12正在内部使用,

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

呈现的 html 中感兴趣的相对 url-

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

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

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.

Google chrome 的控制台选项卡显示-

enter image description here

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


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

enter image description here

有一个条目-

javax.faces.resource.localePrefix=fr

使用 GET 请求访问页面时,由于 1_2.js 中的以下条目而弹出警报文件描述为 selected在上面的结构中。

alert("J'ai gagné Roland Garros ...(resources/fr/1_0/css/js/rafa.js/1_2.js)");

enter image description here

即使在我更改了 locale 之后,我也会看到相同的警报弹出窗口按所需的 command button .

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

最佳答案

资源本地化功能在 JSF specification 中的记录很差.与您的直觉预期相反,本地化的子文件夹不会与 <f:view locale> 匹配。 .相反,它们将与 <message-bundle> 匹配用键 ResourceHandler.LOCALE_PREFIX 标识的条目其值为 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 特性之一。坦率地说,直到今天我才尝试过它,而且我认为我永远不会在现实世界的应用程序中使用它。

关于jsf - 无法从 jsf-resource-library 找到或提供本地化资源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37708090/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com