我可以在Ibatis中将getter定义为结果的属性吗?
像
<resultMap id=.... class=...>
<result property="getSomeValue" column="valueColumn"/>
....
到目前为止,我还没有在文档中看到这一点。
答案 0 :(得分:1)
让我们说吸气剂是
public Value getSomeValue(){
...
}
然后结果看起来像
<result property="someValue" column="valueColumn"/>