ibatis to mybatis conversion for resultMap

Viewed 17

The below was the example of the resultMap in ibatis 2.0

<resultMap type="Policy" id="policyResult" extends="policySummary">
...
<result property="xyz" column="zxy" select="selectQuery" />
..
</resultMap>

While converting the above from ibatis to mybatis 3.0 I am facing issue in select attribute as mentioned in the above <result..> tag How to associate the select query in the resultMap in mybatis.

0 Answers
Related