占位符在资源包中

时间:2017-01-03 09:49:49

标签: jsf java-ee jsf-2 resourcebundle

我需要一些自动填充资源包的占位符。

我的应用程序的用户有两种可能的配置,例如“1”和“2”。根据此配置,应返回具有正确值的条目。

我知道,条件是可能的:

currentConfig=The configuration is currently the {0,choice,0#first|1#second}

在我的faces-config.xml中,资源包已配置为在JSF中进行访问。

现在,我想在JSF中获取此值而不指定参数:

<h:outputText value="#{res.currentConfig}"/>

如果用户已配置“1”,则应返回第一个值,否则返回第二个值。

with configuration "1": The configuration is currently the first.
with configuration "2": The configuration is currently the second.

这可以独立于JSF页面实现吗?

1 个答案:

答案 0 :(得分:0)

您可以用自己的方式从资源包中实现get文本。例如,您可以在某些managedbean中创建这样的方法:

public String getCongiurationText() {
    FacesContext context = FacesContext.getCurrentInstance();
    Locale locale = context.getViewRoot().getLocale();
    ResourceBundle bundle = ResourceBundle.getBundle("messages", locale);
    String msg = bundle.getString("currentConfig");

    Integer value = 1;

    return MessageFormat.format(msg, getConfiguration());
}

然后在你的outputText:

<h:outputText value="#{someUtilBean.getCongiurationText()}" />

使用这种方法,您可以独立于JSF页面获得消息。因此,在每个页面中指定相同的方法,但根据配置,它显示不同的文本。当然可以通过不同的方式获得配置,但这取决于您希望如何处理它。