jsf 2 - jsf /CDI:使用bean从资源请求字符串



我有一个简单的bean,在会话范围内提供一个'翻译方法'

String getText(String key, Object args ...) {
    ...// lookup in property resource
    return value;
}

我试图调用这个bean来获得我的UI组件本地化的文本字符串。当尝试调用上述函数时,例如通过

        <p:outputLabel for="name" value="#{lang.getText(xyz,arg1)}" />
        <p:inputText id="name" value="#{formProject.entity.name}"/>
        <p:message for="name" id="msgName" />
我得到一个java.lang。

我的问题

1) Is this generally a good alternative to <f:loadBundle> to localize my components?
2) Since I am able to address my nested bean fields via bean1.bean2.myfield 
   how to avoid conflicts when adressing the properties dot-sepatated, 
   i.e. x.y.z instead of xyz?

一般使用

<?xml version='1.0' encoding='UTF-8'?>
<faces-config version="2.2" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-facesconfig_2_2.xsd">
    <application>
        <locale-config>
            <default-locale>it</default-locale>
            <supported-locale>it</supported-locale>
            <supported-locale>en</supported-locale>
            <supported-locale>de</supported-locale>
        </locale-config>
        <resource-bundle>
            <base-name>/bundle</base-name>
            <var>bundle</var>
        </resource-bundle>
    </application>
</faces-config>

并通过

获取标签
<p:outputLabel for="name" value="#{bundle.foo}" />
<p:inputText id="name" value="#{formProject.entity.name}"/>
<p:message for="name" id="msgName" />

但是你可以这样访问带点的名字

<p:outputLabel for="name" value="#{bundle['foo.bar']}" />

你不能传递参数(如果没有插值器,我不知道如何做到这一点,或者如果它是可能的)

一个混合解决方案可以是

@ManagedBean
public class LabelBean
{
    private String getText(String key, String... args)
    {
        String message = Faces.evaluateExpressionGet("#{bundle['" + key + "']}");
        return MessageFormat.format(message, args);
    }
    public String getText1(String key, String arg)
    {
        return getText(key, arg);
    }
    public String getText2(String key, String arg1, String arg2)
    {
        return getText(key, arg1, arg2);
    }
}

以类似的方式@hwellmann提出(+1)

表达式语言不支持带可变参数的方法表达式。作为一种变通方法,您可以引入方法

String getText2(String key, Object arg1, Object arg2);
String getText3(String key, Object arg1, Object arg2, Object arg3);

等。

对于2),只需使用#{lang.getText('x.y.z',arg1)}

相关内容

  • 没有找到相关文章

最新更新