第1种:通过在查询的sql语句中定义字段名的别名,让字段名的别名和实体类的属性名一致。
<selectid=”selectorder”parametertype=”int”resultetype=”me.gacl.domain.order”>
select order_id id, order_no orderno ,order_price price form orders where order_id=#{id};
</select>
第2种:通过 <resultMap>来映射字段名和实体类属性名的一一对应的关系。
<selectid="getOrder"parameterType="int"resultMap="orderresultmap">
select * from orders where order_id=#{id}
</select>
<resultMaptype=”me.gacl.domain.order”id=”orderresultmap”>
<!–用id属性来映射主键字段–>
<idproperty=”id”column=”order_id”>
<!–用result属性来映射非主键字段,property为实体类属性名,column为数据表中的属性–>
<resultproperty = “orderno”column =”order_no”/>
<resultproperty=”price”column=”order_price”/>
</reslutMap>