在Dozer中转换具有一个带有参数的吸气剂的j8583物体

时间:2015-12-10 22:36:07

标签: java dozer j8583

我有一个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)来读取存储在fields数组中的所有属性,并将它们移动到一个具有Map的新对象,并希望使用dozer实现此目的。

我需要翻译的对象:

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/111How to pass `this` to Dozer field mapping?总线仍停留在同一个地方,我也想知道我是否可以通过使用API​​实现这一点,因此我可以动态地告诉我想要哪些字段从原始豆获取

2 个答案:

答案 0 :(得分:0)

我不熟悉Dozer,但字段1是位图。 getField(1)会返回null

答案 1 :(得分: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>