我不确定我是否正确了解Dozer mapper中的自定义创建方法。我需要将int类型的bean属性转换为TransTypeCodebook对象实例。但我得到了:
2013-09-13 15:47:27,009 [main] ERROR org.dozer.MappingProcessor - Field mapping error -->
MapId: null
Type: null
Source parent class: cz.jaksky.dozer.a.HolderA
Source field name: transType
Source field type: class java.lang.Integer
Source field value: 0
Dest parent class: cz.jaksky.dozer.b.HolderB
Dest field name: transTypeCodebook
Dest field type: cz.jaksky.dozer.b.codebook.TransTypeCodebook
org.dozer.MappingException: Illegal object type for the method 'setTransTypeCodebook'.
Expected types:
cz.jaksky.dozer.b.codebook.TransTypeCodebook
Actual types:
java.lang.String
我的TransTypeCodebook类
public class TransTypeCodebook extends Codebook {
private int code;
private String label;
private TransTypeCodebook(int code, String label) {
this.code = code;
this.label = label;
}
public int getCode() {
return code;
}
public String getLabel() {
return label;
}
public static TransTypeCodebook getCodebook(int code) {
TransTypeCodebook result;
switch (code) {
case 0:
result = new TransTypeCodebook(0, "Case0");
break;
case 1:
result = new TransTypeCodebook(1, "Case1");
break;
default:
result = new TransTypeCodebook(code, "Not a valid code");
}
return result;
}
}
映射器部分
<field>
<a>transType</a>
<b create-method="getCodebook">transTypeCodebook</b>
</field>
我通过自定义转换器来解决这个问题,但我不确定我是否理解自定义创建方法的概念以及更多我想知道String的来源。任何人都可以点亮它吗?
答案 0 :(得分:0)
我不完全确定,但要使用这样的静态方法,您需要指定其完全限定名称。
<b create-method="your.domain.TransTypeCodebook.getCodebook">transTypeCodebook</b>
Dozer documentation中说明了这一点。