resultMap自定义某个javaBean的封装规则源码

Posted 必须往前走

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了resultMap自定义某个javaBean的封装规则源码相关的知识,希望对你有一定的参考价值。

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
	<!--namespace:名称空间 -->
<mapper namespace="cn.bdqn.mybatis.dao.EmpMapperPlus">

<!--
自定义某个javaBean的封装规则
  type:要自定义规则的javaBean类型
  id:唯一标识,方便引用
  -->
	<resultMap type="cn.bdqn.mybatis.been.Emp" id="myEmp">
		<!--
		id定义主键会有底层优化
		指定主键列的封装规则 
		column:指定哪一列
		property:指定对应的javaBean属性
		 -->
		<id	column="id" property="id"/>
		<!--定义普通列封装规则  -->
		<result	column="last_name"		property="lastName"/>
		<!-- 其他不指定的列会自动封装,但是建议,如果我们写了resultMap,我们就把所有列的映射都写上 -->
		<result column="email"	property="email"/>
		<result column="gender" property="gender"/>
	</resultMap>
	
	
	<!-- public Emp getEmpById(Integer id); -->
	<!-- resultMap自定义结果集 resultType和resultMap只能二选一 -->
	<select id="getEmpById"	 resultMap="myEmp">
		select * from emp where id=#{id}
	</select>

</mapper>

  

以上是关于resultMap自定义某个javaBean的封装规则源码的主要内容,如果未能解决你的问题,请参考以下文章

mybatis 中 sql 映射文件 select 标签以及 入 resultMap 标签的应用

resultMap的使用

串线篇SQL映射文件-resultMap自定义封装

MyBatis基础入门《十四》ResultMap子元素

resultMap自定义映射---8.3.1.解决列名(表中的字段名称)和实体类中的属性名不一致

从Mapper到JavaBean源码层面解析ResultMap是怎么映射的