“找不到基本名称消息包”错误

发布于 2024-12-12 04:41:09 字数 875 浏览 0 评论 0原文

运行我的应用程序时,我收到以下错误:

javax.el.ELException: /view/doi/common/navigation.xhtml: Can't find bundle for base name messages, locale de_CH
at com.sun.faces.facelets.compiler.TextInstruction.write(TextInstruction.java:90)
at com.sun.faces.facelets.compiler.UIInstructions.encodeBegin(UIInstructions.java:82)
at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:302)
at com.sun.faces.renderkit.html_basic.GroupRenderer.encodeChildren(GroupRenderer.java:105)
at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:845)

在我的 faces-config 中,我指定了这一点:

<resource-bundle>
  <base-name>messages</base-name>
  <var>msg</var>
</resource-bundle>

并且我有一个目录 src\web\resources\msg ,其中包含文件 messages_en.propeties。

我缺少什么?

while running my application I get the following error:

javax.el.ELException: /view/doi/common/navigation.xhtml: Can't find bundle for base name messages, locale de_CH
at com.sun.faces.facelets.compiler.TextInstruction.write(TextInstruction.java:90)
at com.sun.faces.facelets.compiler.UIInstructions.encodeBegin(UIInstructions.java:82)
at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:302)
at com.sun.faces.renderkit.html_basic.GroupRenderer.encodeChildren(GroupRenderer.java:105)
at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:845)

In my faces-config I specified this:

<resource-bundle>
  <base-name>messages</base-name>
  <var>msg</var>
</resource-bundle>

and I have a directory src\web\resources\msg with the file messages_en.propeties.

What am I missing?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

烟酒忠诚 2024-12-19 04:41:09

根据异常情况,服务器正在查找的区域设置为 de_CH,如果失败,则为 de。如果也失败,那么它将寻找“默认”语言,但这是什么,取决于您的系统设置。所以它可能永远不会去 messages_en.properties。如果您想要的话,您可以提供 messages.properties (不带任何区域设置指示符)作为默认值。

另请阅读此处,了解区域设置解析如何工作的完整说明:http://java.lang. sun.com/developer/technicalArticles/Intl/ResourceBundles/

Based on the exception, the locale that the server is looking for is de_CH or failing that, de. If that fails too, then it will look for 'default' language, but what that is, depends on your system settings. So it may never even go to messages_en.properties. You could provide messages.properties instead (without any locale indicator) to serve as a default, if that's what you want.

Also read here for the full explanation of how the locale resolution works: http://java.sun.com/developer/technicalArticles/Intl/ResourceBundles/

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