一、延迟加载
延时加载(懒加载):当一个用户与100个账户关联,如果查用户的时候把账户也查出来了,会造成巨大的内存开销。应该是什么时候使用,什么时候查询账户信息。
立即加载:在查询账户时,账户所属的用户信息应该是随它一起查询出来的。
使用情况:
- 一对多、多对多:延迟加载
- 一对一、多对一:立即加载
在全局配置中打开延迟加载的开关:
<configuration>
<!-- 配置properties-->
<properties resource="jdbcConfig.properties"></properties>
<!--配置参数-->
<settings>
<!--开启Mybatis支持延迟加载-->
<setting name="lazyLoadingEnabled" value="true"/>
<setting name="aggressiveLazyLoading" value="false"></setting>
</settings>
...
一对一延迟加载
IAccountDao.xml
<!-- 定义封装account和user的resultMap -->
<resultMap id="accountUserMap" type="account">
<id property="id" column="id"></id>
<result property="uid" column="uid"></result>
<result property="money" column="money"></result>
<!-- 一对一的关系映射:配置封装user的内容
select属性指定的内容:查询用户的唯一标识:
column属性指定的内容:用户根据id查询时,所需要的参数的值
-->
<association property="user" column="uid" javaType="user" select="com.itheima.dao.IUserDao.findById"></association>
</resultMap>
<!-- 查询所有 -->
<select id="findAll" resultMap="accountUserMap">
select * from account
</select>
使用了select属性调用UserDao的findById方法实现延迟查询,使得首先查询Account的list时不加载与之关联的用户,需要时才通过uid去findById里面查找相对应的User信息,colunm="uid"
不能省略,相当于ById的参数。
一对多延迟加载
IAccountDao中加入方法,使能通过用户id返回账户信息:
/**
* 根据用户id查询账户信息
* @param uid
* @return
*/
List<Account> findAccountByUid(Integer uid);
IAccountDao.xml中:
<!-- 根据用户id查询账户列表 -->
<select id="findAccountByUid" resultType="account">
select * from account where uid = #{uid}
</select>
IUserDao.xml中:
<!-- 定义User的resultMap-->
<resultMap id="userAccountMap" type="user">
<id property="id" column="id"></id>
<result property="username" column="username"></result>
<result property="address" column="address"></result>
<result property="sex" column="sex"></result>
<result property="birthday" column="birthday"></result>
<!-- 配置user对象中accounts集合的映射 -->
<collection property="accounts" ofType="account" select="com.itheima.dao.IAccountDao.findAccountByUid" column="id"></collection>
</resultMap>
<!-- 查询所有 -->
<select id="findAll" resultMap="userAccountMap">
select * from user
</select>
实际上都是调用了需要延迟加载的类中的根据标识查找的方法,只不过一对一返回的是单个用户,一对多返回的是多个账户集合。
二、缓存
缓存:存在于内存中的临时数据。减少和数据库的交互次数,提高执行效率。
适用于缓存的:经常查询的数据,并且不经常改变的,数据的正确与否对最终结果影响不大的。
一级缓存:它指的是MyBatis中SqlSession对象的缓存。执行查询后,查询结果会同时存入到SqlSession提供的Map中,再次查询先看Session中有没有。SqlSession消失时,一级缓存也就消失了。也可以用sqlSession中的clearCache()
清除缓存
如果更新用户信息,数据库与缓存中的值不一样后,也会重新查——调用update、clear修改数据,也会清空一级缓存。
**二级缓存:**MyBatis中SqlSessionFactory对象的缓存。由同一个SqlSessionFactory对象创建的SqlSession共享其缓存。存放的内容是散装数据,而不是对象,需要用时封装到对象中去。
-
配置开启二级缓存
-
让当前映射文件支持`
`
-
让当前操作支持
三、注解开发
只要同时使用注解和XML,如果XML在对应路径下,还是会报错。
${}是字符串拼接,可能导致SQL大量注入
#{}用的是预编译,参数占位符。
别名resultMap移到了Results注解中
/**
* 查询所有用户
* @return
*/
@Select("select * from user")
@Results(id="userMap",value={
@Result(id=true,column = "id",property = "userId"),
@Result(column = "username",property = "userName"),
@Result(column = "address",property = "userAddress"),
@Result(column = "sex",property = "userSex"),
@Result(column = "birthday",property = "userBirthday"),
@Result(property = "accounts",column = "id",
many = @Many(select = "com.itheima.dao.IAccountDao.findAccountByUid",
fetchType = FetchType.LAZY))
})
List<User> findAll();
别的方法也可以应用这个注解
一对一立即加载
/**
* 查询所有账户,并且获取每个账户所属的用户信息
* @return
*/
@Select("select * from account")
@Results(id="accountMap",value = {
@Result(id=true,column = "id",property = "id"),
@Result(column = "uid",property = "uid"),
@Result(column = "money",property = "money"),
@Result(property = "user",column = "uid",one=@One(select="com.itheima.dao.IUserDao.findById",fetchType= FetchType.EAGER))
})
List<Account> findAll();
column=“uid” 根据uid到用户表里查
fetchType 加载方式 使用懒加载
select 根据限定名查找的方法
开启二级缓存:@CacheNamespace(blocking = true)