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

我想Properties{"p1"="v1", "p2"="v2"}. 我能够使用公共消化器来做这么多。

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我拥有的默认对象。即new Properties(),我需要做new Properties(defaults)的不是创建 Properties 实例。我知道.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 回答