0
<properties>
   <property name="p1">v1</property>
   <property name="p2">v2</property>
</properties>

Propertiesこれを でオブジェクト に解析したい{"p1"="v1", "p2"="v2"}。Commons Digester を使用して、これだけのことができました。

forPattern("properties").createObject()
        .ofType(Properties.class);
forPattern("properties/property")
        .callMethod("put").withParamCount(2)
        .withParamTypes(Object.class, Object.class).then()
        .callParam().fromAttribute("name").ofIndex(0).then()
        .callParam().ofIndex(1);

Propertiesさらに、私が持っているデフォルト オブジェクトも渡したいと思いました。つまり、の代わりに、Properties インスタンスを作成するnew Properties()必要があります。new Properties(defaults)私は知っていますが、既存のオブジェクトを引数として.usingConstructor(Properties.class).then()渡す方法が見つかりませんでした。Properties

v3.3.2 を使用しています。どんな助けでも大歓迎です

4

1 に答える 1

0

これは、FactoryCreateRule

class PropertiesFactory extends AbstractObjectCreationFactory<Properties> {

    Properties defaultProperties;

    public PropertiesFactory(Properties defaultProperties) {
        super();
        this.defaultProperties = defaultProperties;
    }

    @Override
    public Properties createObject(Attributes attributes) throws Exception {
        return new Properties(defaultProperties);
    }

}

...
...

forPattern("properties").factoryCreate()
        .usingFactory(new PropertiesFactory(defaultProperties));
forPattern("properties/property")
        .callMethod("put").withParamCount(2)
        .withParamTypes(Object.class, Object.class).then()
        .callParam().fromAttribute("name").ofIndex(0).then()
        .callParam().ofIndex(1);
于 2013-07-27T16:32:55.617 に答える