解决字段名与实体类属性名冲突
Posted kfsrex
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决字段名与实体类属性名冲突相关的知识,希望对你有一定的参考价值。
1.在查询时给字段起别名,让别名和实体类属性名一样
<!-- 通过id查询 --> <select id="selectById" parameterType="int" resultType="com.zhiyou100.kfs.bean.Users"> select id as uid,name uname,age uage from users where id=#id </select> |
2.通过mybatis的resultMap标签设置对应关系
<select id="selectById" parameterType="int" resultMap="myMap"> select id,name,age from users where id=#id </select> <resultMap type="com.zhiyou100.kfs.bean.Users" id="myMap"> <id column="id" property="uid"/> <result column="name" property="uname"/> <result column="age" property="uage"/> </resultMap> |
以上是关于解决字段名与实体类属性名冲突的主要内容,如果未能解决你的问题,请参考以下文章
MyBatis学习总结——解决字段名与实体类属性名不相同的冲突