在带有参数属性的 Seam 中使用 Java 类中的消息包
同样的问题在带有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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
注入 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.这是我的解决方案
,谢谢https://stackoverflow.com/users/115541/mac。
This was my solution
Thx https://stackoverflow.com/users/115541/mac.