在带有参数属性的 Seam 中使用 Java 类中的消息包

发布于 2024-12-05 09:30:01 字数 249 浏览 0 评论 0原文

同样的问题在带有Seam的Java类中使用消息包但是当您需要使用参数属性时,例如:

message.property = Some message with {0} this参数,该怎么办?

我应该如何使用地图来做到这一点?

谢谢。

The same question Use message bundle in Java class with Seam but what when you need use a parametric property like:

message.property = Some message with {0} this parameter.

How should I use the map for doing that?

Thanks.

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

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

发布评论

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

评论(2

游魂 2024-12-12 09:30:01

注入 StatusMessages 组件,并调用addFromResourceBundle 方法之一。您可能需要将 {0} 更改为 #0;我不确定 Seam 组件是否使用 MessageFormat 语法。另外,这些消息可以直接使用 EL 和 Seam 组件:#{myComponent.property},然后您就不必传递任何其他内容。

Inject the StatusMessages component, and call one of the addFromResourceBundle methods. You might need to change {0} to #0; I'm not sure if the Seam components make use of the MessageFormat syntax. Also, these messages can use EL and Seam components directly: #{myComponent.property}, and then you don't have to pass anything else.

戏舞 2024-12-12 09:30:01

这是我的解决方案

@In
private Map<String, String> messages;
String property = messages.get("property.key");
MessageFormat.format(property, params);

,谢谢https://stackoverflow.com/users/115541/mac

This was my solution

@In
private Map<String, String> messages;
String property = messages.get("property.key");
MessageFormat.format(property, params);

Thx https://stackoverflow.com/users/115541/mac.

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