推土机绘图布尔

时间:2014-02-11 09:14:03

标签: java dozer

我正在使用推土机,我无法从布尔映射到布尔。可能是什么问题?

映射xhtml

<field>
    <a>test</a>
    <b is-accessible="true" >test2</b>
</field>

一级

private boolean test;

public boolean getTest(){
    return test;
}

b级

private Boolean test2;

public boolean isTest2(){
    return test2;
}

2 个答案:

答案 0 :(得分:1)

使用推土机5.4.0,以下为我工作

    <field>
        <a is-accessible="true" get-method="isFoo">foo</a>
        <b is-accessible="true" set-method="setFoo">foo</b>
    </field>

答案 1 :(得分:0)

根据Dozer上的documentation,这应该是可能的:

  

数据类型转换由Dozer映射引擎自动执行。目前,Dozer支持以下类型的转换:(这些都是双向的)

     
      
  • 原始包装的原始
  •   
  • ...
  •   

您可以尝试specifying set-method and get-method helps