变量替换 JSF 资源包属性文件

发布于 2024-12-15 20:37:46 字数 192 浏览 1 评论 0原文

我可以在 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 技术交流群。

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

发布评论

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

评论(1

半葬歌 2024-12-22 20:37:46

您可以参数化您的资源包,但不能通过键反射重用值。请看一下这个:
https://code.google.com/p/reflectresourcebundle/

这样,您就不需要不要重复你自己!

不带:

company.service.phone=555-1212
[email protected]
my.error.message=Problem accessing account!\
                 Please call customer service at 555-1212 \
                 or email us at [email protected] 

带:

company.service.phone=555-1212
[email protected]
my.error.message=Problem accessing account!\
                 Please call customer service at ${company.service.phone} \
                 or email us at ${company.service.email}

这里是另一个关于格式化的有趣教程。

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:

company.service.phone=555-1212
[email protected]
my.error.message=Problem accessing account!\
                 Please call customer service at 555-1212 \
                 or email us at [email protected] 

With:

company.service.phone=555-1212
[email protected]
my.error.message=Problem accessing account!\
                 Please call customer service at ${company.service.phone} \
                 or email us at ${company.service.email}

Here is another interesting tutorial about formatting.

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