select元素来定义查询操作。
参数 | 描述 |
---|---|
Id |
唯一标识符。 – 用来引用这条语句,需要和接口的方法名一致 |
parameterType |
参数类型。可以不传,MyBatis会根据TypeHandler自动推断 |
resultType |
返回值类型。别名或者全类名,如果返回的是集合,定义集合中元 素的类型。不能和resultMap同时使用 |
一条记录封装成map:
接口中的方法
//返回一条记录的map;key就是列名,值就是对应的值
public Map<String, Object> getEmpByIdReturnMap(Integer id);
映射文件的sql片段;返回值类型直接使用map即可。
<select id="getEmpByIdReturnMap" resultType="map">
select * from tbl_employee where id=#{id}
select>
多条记录封装成map:
接口方法:
//多条记录封装一个map:Map:键是这条记录的主键,
//值是记录封装后的javaBean
//@MapKey:告诉mybatis封装这个map的时候使用哪个属性作为map的key
@MapKey("lastName")
public Map<String, Employee> getEmpByLastNameLikeReturnMap(String lastName);
映射文件:
<select id="getEmpByLastNameLikeReturnMap" resultType="com.atguigu.mybatis.bean.Employee">
select * from tbl_employee where last_name like #{lastName}
select>
自定义返回结果; 和resultType不能同时使用
autoMappingBehavior
默认是PARTIAL
,开启自动映射 的功能。唯一的要求是列名
和javaBean
属性名一致 ; 如果autoMappingBehavior
设置为null
则会取消自动映射
数据库字段命名规范,POJO
属性符合驼峰
命名法,如 A_COLUMN
– aColumn
,我们可以开启自动驼峰命名规 则映射功能,mapUnderscoreToCamelCase=true
但是;针对更加复杂、多变的情况,我们则使用ResultMap
使用@Alias() 取别名。
@Alias("emp")
public class Employee {
……
}
映射文件编写:
<resultMap type="com.atguigu.mybatis.bean.Employee" id="MySimpleEmp">
<id column="id" property="id"/>
<result column="last_name" property="lastName"/>
<result column="email" property="email"/>
<result column="gender" property="gender"/>
resultMap>
<select id="getEmpById" resultMap="MySimpleEmp">
select * from tbl_employee where id=#{id}
select>
在实际应用中,resultMap这个标签使用最多。
(一)级联属性方式:
一个员工对应一个部门
@Alias("emp")
public class Employee {
private Integer id;
private String lastName;
private String email;
private String gender;
private Department dept;
……
}
映射文件
<resultMap type="com.atguigu.mybatis.bean.Employee" id="MyDifEmp">
<id column="id" property="id"/>
<result column="last_name" property="lastName"/>
<result column="gender" property="gender"/>
<result column="did" property="dept.id"/>
<result column="dept_name" property="dept.departmentName"/>
resultMap>
<select id="getEmpAndDept" resultMap="MyDifEmp">
SELECT e.id id,e.last_name last_name,e.gender gender,e.d_id d_id,
d.id did,d.dept_name dept_name FROM tbl_employee e,tbl_dept d
WHERE e.d_id=d.id AND e.id=#{id}
select>
通过级联属性方式
<result column="did" property="dept.id"/>
<result column="dept_name" property="dept.departmentName"/>
(二)使用关键字 association嵌套定义关联的单个对象的封装规则
<resultMap type="com.atguigu.mybatis.bean.Employee" id="MyDifEmp2">
<id column="id" property="id"/>
<result column="last_name" property="lastName"/>
<result column="gender" property="gender"/>
<association property="dept" javaType="com.atguigu.mybatis.bean.Department">
<id column="did" property="id"/>
<result column="dept_name" property="departmentName"/>
association>
resultMap>
(三)使用association进行分步查询:
<resultMap type="com.atguigu.mybatis.bean.Employee" id="MyEmpByStep">
<id column="id" property="id"/>
<result column="last_name" property="lastName"/>
<result column="email" property="email"/>
<result column="gender" property="gender"/>
<association property="dept"
select="com.atguigu.mybatis.dao.DepartmentMapper.getDeptById"
column="d_id">
association>
resultMap>
(四)使用association进行分步查询延迟加载
可以使用延迟加载(懒加载)或者按需加载; 需要在全局中配置规则以下规则即可:
<settings>
<setting name="lazyLoadingEnabled" value="true"/>
<setting name="aggressiveLazyLoading" value="false"/>
settings>
一个部门可以有多个员工
public class Department {
private Integer id;
private String departmentName;
private List<Employee> emps;
……
}
映射规则
<resultMap type="com.atguigu.mybatis.bean.Department" id="MyDept">
<id column="did" property="id"/>
<result column="dept_name" property="departmentName"/>
<collection property="emps" ofType="com.atguigu.mybatis.bean.Employee">
<id column="eid" property="id"/>
<result column="last_name" property="lastName"/>
<result column="email" property="email"/>
<result column="gender" property="gender"/>
collection>
resultMap>
<select id="getDeptByIdPlus" resultMap="MyDept">
SELECT d.id did,d.dept_name dept_name,
e.id eid,e.last_name last_name,e.email email,e.gender gender
FROM tbl_dept d
LEFT JOIN tbl_employee e
ON d.id=e.d_id
WHERE d.id=#{id}
select>
分步查询
<resultMap type="com.atguigu.mybatis.bean.Department" id="MyDeptStep">
<id column="id" property="id"/>
<id column="dept_name" property="departmentName"/>
<collection property="emps"
select="com.atguigu.mybatis.dao.EmployeeMapperPlus.getEmpsByDeptId"
column="{deptId=id}" fetchType="lazy">collection>
resultMap>
<select id="getDeptByIdStep" resultMap="MyDeptStep">
select id,dept_name from tbl_dept where id=#{id}
select>
扩展:如果想将多列的值传递过去, 则将多列的值封装map
传递;格式如下:
column="{key1=column1,key2=column2}"
fetchType="lazy"
:表示使用延迟加载;
lazy
:延迟; eager
:立即
<resultMap type="com.atguigu.mybatis.bean.Employee" id="MyEmpDis">
<id column="id" property="id"/>
<result column="last_name" property="lastName"/>
<result column="email" property="email"/>
<result column="gender" property="gender"/>
<discriminator javaType="string" column="gender">
<case value="0" resultType="com.atguigu.mybatis.bean.Employee">
<association property="dept"
select="com.atguigu.mybatis.dao.DepartmentMapper.getDeptById"
column="d_id">
association>
case>
<case value="1" resultType="com.atguigu.mybatis.bean.Employee">
<id column="id" property="id"/>
<result column="last_name" property="lastName"/>
<result column="last_name" property="email"/>
<result column="gender" property="gender"/>
case>
discriminator>
resultMap>