Hi,
Can I define a getter as a property on a result in Ibatis?
like
<resultMap id=.... class=...>
<result property="getSomeValue" column="valueColumn"/>
....
I haven't seen this in documentation so far.
Hi,
Can I define a getter as a property on a result in Ibatis?
like
<resultMap id=.... class=...>
<result property="getSomeValue" column="valueColumn"/>
....
I haven't seen this in documentation so far.
Let's say the getter is
public Value getSomeValue(){
...
}
then the result would look like
<result property="someValue" column="valueColumn"/>