8

次の 2 つの単純な POJO があります。

class Person {
   String name
   Address address;
   //and of course the getter/setter for the attributes
}

class Address {
   String city;
   //also getter/setter for this attribute
}

そして、バッキング Bean:

@ManagedBean
@RequestScoped
class PersonController {

    private List persons;
    private List<String> columns = Arrays.toList("name", "address.city");
   //of course getter/setter
}

次に、dataTable を作成します。

<p:dataTable var="person" value="#{personController.persons}" columnIndexVar="index">
    <p:columns var="column" value="#{personController.columns}">
        <h:outputText value="#{person[column]}"/>
    <p:columms>
</p:dataTable>

これを実行すると、ServletException が発生します。

クラス Person にはプロパティ「address.city」がありません。

しかし、p:columns 内で次のようにプロパティ city にアクセスしようとすると:

<h:outputText value="#{person.address.city}"/>

すべて順調。

そのようなネストされたプロパティにアクセスできないのはなぜ#{person['address.city']}ですか? また、どのようにアクセスできますp:columnsか?

4

2 に答える 2

9

のような中括弧表記の文字列式のネストされたBeanプロパティ#{person['address.city']}は、デフォルトではサポートされていません。基本的にはが必要です#{person['address']['city']}

ここにカスタムが必要ELResolverです。最も簡単なのは、既存のを拡張することBeanELResolverです。

キックオフの例は次のとおりです。

public class ExtendedBeanELResolver extends BeanELResolver {

    @Override
    public Object getValue(ELContext context, Object base, Object property)
        throws NullPointerException, PropertyNotFoundException, ELException
    {
        if (property == null || base == null || base instanceof ResourceBundle || base instanceof Map || base instanceof Collection) {
            return null;
        }

        String propertyString = property.toString();

        if (propertyString.contains(".")) {
            Object value = base;

            for (String propertyPart : propertyString.split("\\.")) {
                value = super.getValue(context, value, propertyPart);
            }

            return value;
        }
        else {
            return super.getValue(context, base, property);
        }
    }

}

実行するには、次のように登録しますfaces-config.xml

<application>
    <el-resolver>com.example.ExtendedBeanELResolver</el-resolver>
</application>
于 2012-05-23T14:51:19.940 に答える
1

@BalusC の回答に加えて、PrimeResourceHandler のチェックを追加する必要がありました。そうしないと、primefaces.css 内の #{resource['primefaces:spacer/dot_clear.gif']} などの #{resource...} のすべての解決が失敗し、解析された CSS ファイルの出力ストリームが破損します。

public class ExtendedBeanELResolver extends BeanELResolver {

    private static final String PRIMEFACES_RESOURCE_PREFIX = "primefaces:";

    @Override
    public Object getValue(ELContext context, Object base, Object property) throws NullPointerException,
            PropertyNotFoundException, ELException {
        if (property == null || base == null || base instanceof ResourceBundle || base instanceof Map
                || base instanceof Collection || base instanceof PrimeResourceHandler) {
            return null;
        }

        String propertyString = property.toString();

        if (!propertyString.startsWith(PRIMEFACES_RESOURCE_PREFIX) && propertyString.contains(".")) {
            Object value = base;

            for (String propertyPart : propertyString.split("\\.")) {
                value = super.getValue(context, value, propertyPart);
            }

            return value;
        } else {
            return super.getValue(context, base, property);
        }
    }
}
于 2014-01-28T06:34:54.683 に答える