0

我有一个 IsoMessage 对象(https://github.com/chochos/j8583/blob/master/src/main/java/com/solab/iso8583/IsoMessage.java),它有一个内部数组,我只能通过一个getField(int) 方法。

public class IsoMessage {

    @SuppressWarnings("rawtypes")
    private IsoValue[] fields = new IsoValue[129];
    .........
    .........
    .........

    /** Returns the IsoValue for the specified field. First real field is 2. */
    @SuppressWarnings("unchecked")
    public <T> IsoValue<T> getField(int field) {
        return fields[field];
    }

我需要通过调用 getField(param Number) 读取存储在字段数组中的所有属性,并将它们移动到具有 Map 的新对象,并希望使用推土机来实现这一点。

我需要翻译的对象:

public class TransactionInstance implements Serializable {

    private static final long serialVersionUID = 3429335891821913088L;
    private String transactionName;
    private Map<String, String> parameters;

我正在试验这个推土机配置,希望从我的 isoMessage 对象中获取字段 1

<mapping map-id="a">
    <class-a>com.solab.iso8583.IsoMessage</class-a>
    <class-b>j8583.example.TransactionInstance</class-b>
    <field>
        <a get-method="getField" key="1">field</a>
        <b map-set-method="put">parameters</b>
    </field>
</mapping>

但是我坚持从原始对象中获取值,但有以下例外:

Exception in thread "main" org.dozer.MappingException: No read or write method found for field (field) in class (class com.solab.iso8583.IsoMessage)
    at org.dozer.propertydescriptor.GetterSetterPropertyDescriptor.determinePropertyType(GetterSetterPropertyDescriptor.java:319)
    at org.dozer.propertydescriptor.GetterSetterPropertyDescriptor.getPropertyType(GetterSetterPropertyDescriptor.java:76)
    at org.dozer.fieldmap.MapFieldMap.determineActualPropertyType(MapFieldMap.java:170)
    at org.dozer.fieldmap.MapFieldMap.getSrcFieldValue(MapFieldMap.java:95)

我正在查看这篇文章https://github.com/DozerMapper/dozer/issues/111以及如何将“this”传递给 Dozer 字段映射?总线仍然停留在同一个地方,我也想知道我是否可以通过使用 API 来实现这一点,这样我就可以动态地告诉我想从原始 bean 中获取哪些字段

4

2 回答 2

0

我不熟悉推土机,但字段 1 是位图。getField(1)返回null

于 2015-12-11T17:13:19.107 回答
0

我终于使用推土机必须直接访问内部对象的能力找到了正确的映射(http://dozer.sourceforge.net/documentation/custommethods.html)。

<mapping>
    <class-a is-accessible="true">com.solab.iso8583.IsoMessage</class-a>
    <class-b>j8583.example.TransactionInstance</class-b>
    <field>
        <a>fields[3]</a>
        <b set-method="addParameter" map-set-method="addParameter" key="field3">parameters
        </b>
    </field>

</mapping>
于 2015-12-16T01:17:50.710 回答