发布于 2024-10-01 17:02:25 字数 496 浏览 5 评论 0 原文

我正在尝试动态传递 h:outputText 标记中的值。

场景是,我有一个带有键/值对的属性文件,我正在从属性文件中获取数据:

例如:

roles.properites

admin=Administrator 用户=用户 Visitor=Visitor

我现在通过这种方式访问​​代码 将显示管理员

现在我有一个动态存储在 Spring 对话范围中的值:

说 {conversationScope.userRole}

我无法以这种方式调用属性文件属性

如何将对话范围值作为资源包的属性传递。

谢谢。

I am trying to dynamically pass a value in h:outputText tag.

The scenario being, I have a properties file with key/value pairs and I m fetching the data from properties file:

Eg:

roles.properites

admin=Administrator
user=User
visitor=Visitor

I now access the code this way <h:outputText value="#{myRoles.admin}"/> will display Administrator

Now I have a value dynamically stored in spring conversation scope:

Say {conversationScope.userRole}

I can't invoke the properties file property this way
<h:outputText value="#{myRoles.conversationScope.userRole}"/>

How do I pass the conversation scope value as a property of a resource bundle.

Thanks.

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

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

发布评论

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

评论(1

秋千易 2024-10-08 17:02:25

将资源包声明为:

<resource-bundle>
   <base-name>anyBaseName</base-name>
   <var>bundle</var>
</resource-bundle>

您的 JSF 组件将类似于:

<h:outputText value="#{bundle[myRoles.conversationScope.userRole]}"/>

Having a resource bundle declared as:

<resource-bundle>
   <base-name>anyBaseName</base-name>
   <var>bundle</var>
</resource-bundle>

Your JSF component would be something like:

<h:outputText value="#{bundle[myRoles.conversationScope.userRole]}"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文