- select标签的resultType表明将查找到数据封装的类型,像这样,Emp是一个实体类
<select id="findAll" resultType="com.lin.bean.Emp"> SELECT * FROM tbl_employee </select>
mybatis就会把数据库和pojo类中属性名字相同的列给他封装好,如果存在不一致的话也不会报错,总之就是那个一致就封装哪个。
-
如果列名不一致,又想要进行封装的话
-
可以在sql语句中使用别名进行转换,要注意这样一来那些列名一样的列如果想要封装的话也就要一起写上的了。
<select id="findAll2Emp2" resultType="com.lin.bean.Emp2"> select id as empId, last_name as empLastName, gender as empGender,email , d_id as empdId from tbl_employee </select>
-
第二种方法就是使用resultMap啦,resultMap也不是什么高级的操作,就是自己定义了一个java列名和表列名对应的映射而已,语法是酱紫的。其中id表明这一列是主键, result就是一般的列,propety对应的是pojo类的属性名称,column对应是数据表的列名
<resultMap id="emp2" type="com.lin.bean.Emp2"> <id property="empId" column="id"/> <result property="empLastName" column="last_name"/> <result property="empGender" column="gender"/> <result property="email" column="email"/> <result property="empdid" column="d_id"/> </resultMap>
使用:
<select id="findAll2Emp2" resultMap="emp2"> -- select id as empId, last_name as empLastName, gender as empGender,email , d_id as empdId from tbl_employee select * from tbl_employee </select>
-
Mybatis 细节(3)select结果集
最新推荐文章于 2023-12-12 19:20:08 发布
本文详细介绍了MyBatis中的结果映射方法,包括使用resultType自动映射数据库查询结果到实体类,以及通过resultMap手动指定字段与实体属性之间的映射关系,帮助开发者更好地理解和应用MyBatis。
摘要由CSDN通过智能技术生成