延迟加载——Mybatis(三)
延迟加载
一、延迟加载
数据库查询问题:
以一对多关系为例,用户和账户是一对多的关系。
-则查询用户时,是否需要把关联的多个账户查询出来?
不需要,一般账户信息什么时候需要,则随用户一起查出来
-查询账户时,是否需要将关联的用户查出来?
需要,账户信息一般将用户信息一起查出
延迟加载:
按需加载。即数据真正被需要时,才发起查询。
立即加载:
所有的查询都加载信息,不管是否需要。
多表查询与延迟加载:
一对多,多对多:通常采用延迟加载
多对一(本质也是一对一),一对一:通常采用立即加载
二、延迟加载实现多表查询
1. 一对一(多对一):立即加载
实现立即加载: 当查询account信息时,同步查询关联的user信息
配置AccountDao的xml文件,实现延迟加载
-association:Account关联的user类
-property: 实体类属性名
-column: 查询语句属性名
-select: 通过uid,查询user的方法
-javaType:user的Java类型
<resultMap id="account" type="account">
<id property="id" column="id"></id>
<result property="uid" column="id"></result>
<result property="money" column="money"></result>
<association property="user" column="uid" select="com.one.mybatis.dao.UserDao.findById" javaType="user"></association>
</resultMap>
<select id="findAll" resultMap="account">
select * from account;
</select>
2. 一对多:延迟加载
实现一对多的延迟加载。当查询User表时,按需加载关联的多个Account信息
<resultMap id="user" type="user">
<id property="id" column="id"></id>
<result property="username" column="username"></result>
<result property="birthday" column="birthday"></result>
<result property="sex" column="sex"></result>
<result property="address" column="address"></result>
<collection property="accounts" column="id" select="com.one.mybatis.dao.AccountDao.findByUid" ofType="account">
</collection>
</resultMap>
<select id="findAll" resultMap="user">
select * from user;
</select>
com.one.mybatis.dao.AccountDao.findByUid实现:
<select id="findByUid" resultType="account" parameterType="int">
select * from account where uid=#{uid};
</select>
3. 多对多:延迟加载
查询user信息时,延迟加载想关联的多个role信息
<resultMap id="user" type="user">
<id property="id" column="id"></id>
<result property="username" column="username"></result>
<result property="birthday" column="birthday"></result>
<result property="sex" column="sex"></result>
<result property="address" column="address"></result>
<collection property="roles" column="id" select="com.one.mybatis.dao.RoleDao.findByUid" ofType="role"></collection>
</resultMap>
<select id="findAll" resultMap="user">
select * from user;
</select>
com.one.mybatis.dao.RoleDao.findByUid方法:
<select id="findByUid" parameterType="int" resultType="role">
select * from role, user_role where role.id=user_role.rid and user_role.uid=#{uid};
</select>
下一篇:注解开发——Mybatis(四)