变量替换 JSF 资源包属性文件
我可以在 JSF 资源包属性文本文件中执行类似的操作吗:
receptionContact=Reception
reservationContact=Reservation
receptionEmail={receptionContact}
reservationEmail={reservationContact}
Can i do something like in JSF Resource Bundle property text file:
receptionContact=Reception
reservationContact=Reservation
receptionEmail={receptionContact}
reservationEmail={reservationContact}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以参数化您的资源包,但不能通过键反射重用值。请看一下这个:
https://code.google.com/p/reflectresourcebundle/
这样,您就不需要不要重复你自己!
不带:
带:
这里是另一个关于格式化的有趣教程。
You can parameterize your resource bundles, but no reflective reuse of values by keys. Please have a look on this:
https://code.google.com/p/reflectiveresourcebundle/
With that, you don't have repeat your self!
Without:
With:
Here is another interesting tutorial about formatting.