IBatis中的resultMap继承方式


今天才知道IBatis中的resultMap原来是可以通过以下方式继承的:

<typeAlias alias="Domain" type="com.xxx.Domain" /> 

<resultMap id = "domain" type = "Domain"> 
 <result property="id" column="id" /> 
</resultMap>
 
<resultMap id = "extraDomain" extends="domain"> 
 <result property="name" column="name"/> 
</resultMap> 

你可能感兴趣的:(ibatis)