我正在使用推土机来映射对象。但我收到一条有线错误消息
无法读取 com.edfx.adb.persist.entity.Customer 类的活动属性。
在 Eclipse 的推土机映射编辑器中,我在 Eclipse 中安装了推土机插件。这是我的映射:
<mapping>
<class-a>com.edfx.adb.persist.entity.Customer</class-a>
<class-b>com.edfx.adb.web.dto.CustomerDTO</class-b>
<field>
<a get-method="isActive">active</a>
<b get-method="isActive">active</b>
<a-hint>java.lang.Boolean</a-hint>
<b-hint>java.lang.Boolean</b-hint>
</field>
</mapping>
这active
是具有类型和类boolean
的字段。Customer
CustomerDTO
我无法删除或隐藏错误消息。也不知道为什么会显示。对于这个错误,Eclipse 在整个项目中显示错误,这是不可取的。
任何信息都会对我很有帮助。