1、resultMap处理字段和属性的映射关系
若字段名和实体类中的属性名不一致,则可以通过resultMap设置自定义映射
<!-- resultMap:设置自定义映射 属性: id:表示自定义映射的唯一标识 type:查询的数据要映射的实体类的类型 子标签: id:设置主键的映射关系 result:设置普通字段的映射关系 association:设置多对一的映射关系 collection:设置一对多的映射关系 属性: property:设置映射关系中实体类中的属性名 column:设置映射关系中表中的字段名 --> <resultMap id="userMap" type="User"> <id property="id" column="id"></id> <result property="userName" column="user_name"></result> <result property="password" column="password"></result> <result property="age" column="age"></result> <result property="sex" column="sex"></result> </resultMap> <!--List<User> testMohu(@Param("mohu") String mohu);--> <select id="testMohu" resultMap="userMap"> <!--select * from t_user where username like '%${mohu}%'--> select id,user_name,password,age,sex from t_user where user_name like concat('%',#{mohu},'%') </select>
若字段名和实体类中的属性名不一致,但是字段名符合数据库的规则(使用_),实体类中的属性 名符合Java的规则(使用驼峰) 此时也可通过以下两种方式处理字段名和实体类中的属性的映射关系 a>可以通过为字段起别名的方式,保证和实体类中的属性名保持一致 b>可以在MyBatis的核心配置文件中设置一个全局配置信息mapUnderscoreToCamelCase,可 以在查询表中数据时,自动将_类型的字段名转换为驼峰 例如:字段名user_name,设置了mapUnderscoreToCamelCase,此时字段名就会转换为 userName
<settings>
<!--将_自动映射为驼峰,emp_name:empName-->
<setting name="mapUnderscoreToCamelCase" value="true"/>
<!--开启延迟加载-->
<setting name="lazyLoadingEnabled" value="true"/>
</settings>
* 解决字段名和属性名不一致的情况:
* a>为字段起别名,保持和属性名的一致
* b>设置全局配置,将_自动映射为驼峰
* <setting name="mapUnderscoreToCamelCase" value="true"/>
* c>通过resultMap设置自定义的映射关系
* <resultMap id="empResultMap" type="Emp">
* <id property="eid" column="eid"></id>
* <result property="empName" column="emp_name"></result>
* <result property="age" column="age"></result>
* <result property="sex" column="sex"></result>
* <result property="email" column="email"></result>
* </resultMap>
2、多对一映射处理
查询员工信息以及员工所对应的部门信息
a>级联方式处理映射关系:
<resultMap id="empDeptMap" type="Emp"> <id column="eid" property="eid"></id> <result column="ename" property="ename"></result> <result column="age" property="age"></result> <result column="sex" property="sex"></result> <result column="did" property="dept.did"></result> <result column="dname" property="dept.dname"></result> </resultMap> <!--Emp getEmpAndDeptByEid(@Param("eid") int eid);--> <select id="getEmpAndDeptByEid" resultMap="empDeptMap"> select emp.*,dept.* from t_emp emp left join t_dept dept on emp.did = dept.did where emp.eid = #{eid} </select>
b>使用association处理映射关系
<resultMap id="empDeptMap" type="Emp"> <id column="eid" property="eid"></id> <result column="ename" property="ename"></result> <result column="age" property="age"></result> <result column="sex" property="sex"></result> <association property="dept" javaType="Dept"> <id column="did" property="did"></id> <result column="dname" property="dname"></result> </association> </resultMap> <!--Emp getEmpAndDeptByEid(@Param("eid") int eid);--> <select id="getEmpAndDeptByEid" resultMap="empDeptMap"> select emp.*,dept.* from t_emp emp left join t_dept dept on emp.did = dept.did where emp.eid = #{eid} </select>
c>分步查询
查询员工信息
/** * 通过分步查询查询员工信息 * @param eid * @return */ Emp getEmpByStep(@Param("eid") int eid);
<resultMap id="empDeptStepMap" type="Emp"> <id column="eid" property="eid"></id> <result column="ename" property="ename"></result> <result column="age" property="age"></result> <result column="sex" property="sex"></result> <!-- select:设置分步查询,查询某个属性的值的sql的标识(namespace.sqlId) column:将sql以及查询结果中的某个字段设置为分步查询的条件
select。。。column="did"将查询到外键id传入部门接口中 --> <association property="dept" select="com.atguigu.MyBatis.mapper.DeptMapper.getEmpDeptByStep" column="did"> </association> </resultMap> <!--Emp getEmpByStep(@Param("eid") int eid);--> <select id="getEmpByStep" resultMap="empDeptStepMap"> select * from t_emp where eid = #{eid} </select>
2)根据员工所对应的部门id查询部门信息
/** * 分步查询的第二步:根据员工所对应的did查询部门信息 * @param did * @return */ Dept getEmpDeptByStep(@Param("did") int did);
<!--Dept getEmpDeptByStep(@Param("did") int did);--> <select id="getEmpDeptByStep" resultType="Dept"> select * from t_dept where did = #{did} </select>
传入部门接口其实就是中调用这个接口。select="com.atguigu.MyBatis.mapper.DeptMapper.getEmpDeptByStep" column="did">
3、一对多映射处理
a>collection
/** * 根据部门id查新部门以及部门中的员工信息 * @param did * @return */ Dept getDeptEmpByDid(@Param("did") int did);
<resultMap id="deptEmpMap" type="Dept"> <id property="did" column="did"></id> <result property="dname" column="dname"></result> <!-- ofType:设置collection标签所处理的集合属性中存储数据的类型 --> <collection property="emps" ofType="Emp"> <id property="eid" column="eid"></id> <result property="ename" column="ename"></result> <result property="age" column="age"></result> <result property="sex" column="sex"></result> </collection> </resultMap> <!--Dept getDeptEmpByDid(@Param("did") int did);--> <select id="getDeptEmpByDid" resultMap="deptEmpMap"> select dept.*,emp.* from t_dept dept left join t_emp emp on dept.did = emp.did where dept.did = #{did} </select>
<collection property="emps" ofType="Emp">
property就是实体类中的属性
就是说部门表的实体类中的某个属性与collection是对应的,每查询到一条数据就会存入实体类中,是一一对应的,上面自定义的什么就存入什么 然后存入emps中,oftype=Emp就是部门id查询到的员工 对应的实体类类型
<association property="dept" javaType="Dept"> 也是这样的,看是对一还是对多
简单的说就是 将查询到的员工信息(emp) 存入emps中
b>分步查询
/** * 分步查询部门和部门中的员工 * @param did * @return */ Dept getDeptByStep(@Param("did") int did);
<resultMap id="deptEmpStep" type="Dept"> <id property="did" column="did"></id> <result property="dname" column="dname"></result> <collection property="emps" fetchType="eager" select="com.atguigu.MyBatis.mapper.EmpMapper.getEmpListByDid" column="did"> </collection> </resultMap> <!--Dept getDeptByStep(@Param("did") int did);--> <select id="getDeptByStep" resultMap="deptEmpStep"> select * from t_dept where did = #{did} </select>
2)根据部门id查询部门中的所有员工
/** * 根据部门id查询员工信息 * @param did * @return */ List<Emp> getEmpListByDid(@Param("did") int did);
<!--List<Emp> getEmpListByDid(@Param("did") int did);--> <select id="getEmpListByDid" resultType="Emp"> select * from t_emp where did = #{did} </select>
分步查询的优点:可以实现延迟加载,但是必须在核心配置文件中设置全局配置信息: lazyLoadingEnabled:延迟加载的全局开关。当开启时,所有关联对象都会延迟加载 aggressiveLazyLoading:当开启时,任何方法的调用都会加载该对象的所有属性。 否则,每个 属性会按需加载 此时就可以实现按需加载,获取的数据是什么,就只会执行相应的sql。此时可通过association和 collection中的fetchType属性设置当前的分步查询是否使用延迟加载,fetchType="lazy(延迟加 载)|eager(立即加载)"
连表查询在实体类中定义结果集,或者结果对象
分步查询 在最后一次查询的时候 跟单表查询是一样的,需要resultType 看具体是集合 还是对象
标签:实体类,映射,自定义,did,resultMap,查询,dept,emp,select From: https://www.cnblogs.com/dzs894330350/p/16727151.html