Writing by Tor小黑 —-心中藏之,无日忘之
MyBatis使用
一、基本使用
1、pom.xml
1 | <dependencies> |
2、配置文件
1 |
|
3、实体类Account.java
1 | package com.huan.entity; |
4、Dao层AccountDao.java
1 | package com.huan.dao; |
5、AccountDaoMapper.xml
1 |
|
6、测试
1 | package com.huan.test; |
二、多表级联查询(一对多关系)
A、一对多关系,从一查多(查学生的时候带出班级)
1、实体类Student.java
1 | package com.huan.entity; |
2、实体类Classes.java
1 | package com.huan.entity; |
3、StudentDao.java
1 | package com.huan.dao; |
4、StudentDaoMapper.xml
1 |
|
5、公共配置文件注册Mapper
1 |
|
6、测试
1 | package com.huan.test; |
b、一对多关系,从多查一(查班级的时候带出学生)
1、ClassesDao.java
1 | package com.huan.dao; |
2、ClassesDaoMapper.xml
1 |
|
3、注册Mapper
1 | <mapper resource="com/huan/dao/ClassesDaoMapper.xml"></mapper> |
4、测试
1 | public static void main(String[] args) { |
三、多表级联查询(多对多关系)
A、查找用户购买所有商品
Customer.java
1 | package com.huan.entity; |
Goods.java
1 | package com.huan.entity; |
CustomerDao.java
1 | package com.huan.dao; |
CustomerDaoMapper.xml
1 |
|
注册Mapper+测试
1 | CustomerDao customerDao = sqlSession.getMapper(CustomerDao.class); |
B、通过商品查找所有购买的用户
GoodsDao.java
1 | package com.huan.dao; |
GoodsDaoMapper.xml
1 |
|
注册Mapper+测试
1 | GoodsDao goodsDao = sqlSession.getMapper(GoodsDao.class); |
四、MyBatis逆向工程
MyBatis需要:实体类、自定义Mapper接口、接口对应的Mapper.xml
传统的开发过程中,上述的三个组件需要开发者自己手动创建,逆向工程可以帮助开发者来自动创建这三个组件。 减轻开发者的工作量,提高工作效率。
MyBatis Generator(生成器) 简称MBG(逆向工程),是一个专门为MyBatis框架开发者定制的代码生成器,可自动生成MyBatis框架所需的实体类、Mapper接口、Mapper.xml,支持基本的CRUD操作,但是一些相对复杂的SQL需要开发者自己实现
1、新建Maven工程。pom.xml
1 | <dependencies> |
2、创建MBG配置文件,名字可自定义GeneratorConfig.xml
- jdbcConnection 配置数据库连接信息
- javaModelGenerator 配置JavaBean的生成策略(实体类)
- sqlMapGenerator 配置SQL映射文件生成策略
- javaclientGenerator 配置自定义Mapper接口的生成策略
- table 配置目标数据表(tableName:表名,domainObjectName:JavaBean实体类名)
1 |
|
3、创建Generator执行的类
1 | package com.huan.test; |
五、MyBatis延迟加载
1、什么是延迟加载?
延迟加载也叫懒加载、惰性加载,使用延迟加载可以提高程序的运行效率,针对于数据持久层的操作,在某些特定的情况下去访问特定的数据库,在其他情况下可以不访问某些表,从一定程度上减少了Java应用与数据库的交互次数。
举例:查询学生和班级时,学生和班级是两张不同的表,如果当前的需求只需要获取学生的信息,那么查询学生单表即可,如果需要通过学生获取对应的班级信息,则必须查询两张表。
不同的业务需求,需要查询不同的表,根据具体的业务需求来动态的减少数据表查询的工作就是延迟加载。
2、在主配置文件中开启延迟加载
1 | <settings> |
3、将多表关联查询拆分成多个单表查询
StudentDao
1 | public Student findByIdLazy(long id); |
StudentDaoMapper.xml
1 | <!--延迟加载--> |
ClassesDao
1 | public Classes findByIdLazy(long id); |
ClassesDaoMapper.xml
1 | <select id="findByIdLazy" parameterType="long" resultType="com.huan.entity.Classes"> |
六、MyBatis缓存
1、什么是MyBatis缓存
使用缓存可以减少java应用与数据库的交互次数,从而提升程序的运行效率。比如查询id=1的对象,第一次查询出之后会自动将该对象保存到缓存中,当下一次查询时,直接从缓存中取出对象即可,无需再次查询数据库。
2、MyBatis缓存分类
一级缓存:SqlSession级别,默认开启,并且不能关闭。操作数据库时需要创建SqlSession对象,在对象中有一个HashMap用于存储缓存数据,不同的SqlSession之间的缓存数据区域是互不影响的。
一级缓存的作用域是SqlSession范围的,当在同一个SqlSession中执行两次相同的SQL语句时,第一次执行完毕会将结果保存到缓存中,第二次查询时直接从缓存中获取。
需要注意的是,如果SqlSession执行了DML操作(insert、update、delete),MyBatis必须将缓存清空,以保证数据的准确性。
二级缓存:Mapper级别的,默认关闭,可以开启。
使用二级缓存时,多个SqlSession使用同一个Mapper的SQL语句操作数据库,得到的数据会存在二级缓存区,同样是使用HashMap进行数据存储,相比较于一级缓存,二级缓存的范围更广,多个SqlSession可以共用二级缓存,二级缓存是跨SqlSession的。
二级缓存是多个SqlSession共享的,其作用域是Mapper的同一个namespase,不同的SqlSession两次执行相同的namespase下的SQL语句,参数也相等,则第一次执行成功之后会将数据保存到二级缓存中,第二次可直接从二级缓存中取出数据。
一级缓存
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28package com.huan.test;
import com.huan.dao.AccountDao;
import com.huan.entity.Account;
import org.apache.ibatis.session.SqlSession;
import org.apache.ibatis.session.SqlSessionFactory;
import org.apache.ibatis.session.SqlSessionFactoryBuilder;
import java.io.InputStream;
public class Test4 {
public static void main(String[] args) {
InputStream inputStream = Test.class.getClassLoader().getResourceAsStream("MyBatisConfig.xml");
SqlSessionFactoryBuilder sqlSessionFactoryBuilder = new SqlSessionFactoryBuilder();
SqlSessionFactory sqlSessionFactory = sqlSessionFactoryBuilder.build(inputStream);
SqlSession sqlSession = sqlSessionFactory.openSession();
AccountDao accountDao = sqlSession.getMapper(AccountDao.class);
Account account = accountDao.findById(1L);
System.out.println(account);
sqlSession.close();
sqlSession = sqlSessionFactory.openSession();
accountDao = sqlSession.getMapper(AccountDao.class);
Account account1 = accountDao.findById(1L);
System.out.println(account1);
}
}二级缓存
- MyBatis自带的二级缓存
config.xml中配置开启二级缓存
1
2
3
4
5
6
7
8<settings>
<!--打印SQL-->
<setting name="logImpl" value="STDOUT_LOGGING"/>
<!--开启延迟加载-->
<setting name="lazyLoadingEnabled" value="true"/>
<!--开启二级缓存-->
<setting name="cacheEnabled" value="true"/>
</settings>Mapper.xml中配置二级缓存
1
2<mapper namespace="com.huan.dao.AccountDao">
<cache></cache>实体类实现序列化接口
1
2
3
4
5
6public class Account implements Serializable {
private Long id;
private String username;
private String password;
private int age;
} 2.第三方ehcache二级缓存
pom.xml添加依赖
1
2
3
4
5
6
7
8
9
10<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-ehcache</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache-core</artifactId>
<version>2.4.3</version>
</dependency>config.xml中配置开启二级缓存
1
2
3
4
5
6
7
8<settings>
<!--打印SQL-->
<setting name="logImpl" value="STDOUT_LOGGING"/>
<!--开启延迟加载-->
<setting name="lazyLoadingEnabled" value="true"/>
<!--开启二级缓存-->
<setting name="cacheEnabled" value="true"/>
</settings>Mapper.xml中配置二级缓
1
2
3
4
5
6
7
8
9<mapper namespace="com.huan.dao.AccountDao">
<cache type="org.mybatis.caches.ehcache.EhcacheCache">
<!--缓存创建之后,最后一次访问缓存的时间至缓存失效的时间间隔-->
<property name="timeToIdleSeconds" value="3600"/>
<!--缓存自创建时间起至失效的时间间隔-->
<property name="timeToLiveSeconds" value="3600"/>
<!--缓存的回收策略,LRU表示移除近期使用最少的对象-->
<property name="memoryStoreEvictionPolicy" value="LRU"/>
</cache>实体类不需要实现序列化接口。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15package com.huan.entity;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
public class Account {
private Long id;
private String username;
private String password;
private int age;
}
七、MyBatis的动态SQL
使用动态SQL可以简化代码的开发,减少开发者的工作量,程序可以根据业务参数来决定SQL的组成。
<1> if标签
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15<select id="findByAccount" parameterType="com.huan.entity.Account" resultType="com.huan.entity.Account">
select * from t_account where
<if test="id!=0">
id=#{id}
</if>
<if test="username!=null">
and username=#{username}
</if>
<if test="password!=null">
and password=#{password}
</if>
<if test="age!=null">
and age=#{age}
</if>
</select>if标签可以自动根据表达式的结果来决定是否将对应的语句添加到SQL中,如果条件不成立则不添加,如果条件成立则添加。
<2> where标签
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17<select id="findByAccount" parameterType="com.huan.entity.Account" resultType="com.huan.entity.Account">
select * from t_account
<where>
<if test="id!=null">
id=#{id}
</if>
<if test="username!=null">
and username=#{username}
</if>
<if test="password!=null">
and password=#{password}
</if>
<if test="age!=null">
and age=#{age}
</if>
</where>
</select>where标签可以自动判断是否要删除语句块中的and的关键字,如果检测到where直接跟and拼接,则自动删除and,通常情况下if和where结合起来使用。
<3> choose、when标签
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19<select id="findByAccount" parameterType="com.huan.entity.Account" resultType="com.huan.entity.Account">
select * from t_account
<where>
<choose>
<when test="id!=null">
id=#{id}
</when>
<when test="username!=null">
and username=#{username}
</when>
<when test="password!=null">
and password=#{password}
</when>
<when test="age!=0">
and age=#{age}
</when>
</choose>
</where>
</select><4> trim标签
trim标签中的prefix和suffix属性会被用于生成实际的SQL语句,会和标签内部的语句进行拼接,如果语句前后出现了prefixOverrides或suffixOverrides属性中指定的值,MyBatis框架会自动将其删除。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17<select id="findByAccount" parameterType="com.huan.entity.Account" resultType="com.huan.entity.Account">
select * from t_account
<trim prefix="where" prefixOverrides="and">
<if test="id!=null">
id=#{id}
</if>
<if test="username!=null">
and username=#{username}
</if>
<if test="password!=null">
and password=#{password}
</if>
<if test="age">
and age=#{age}
</if>
</trim>
</select><5> set标签
set标签用于update操作,会自动根据参数选择生成SQL语句。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15<update id="update" parameterType="com.huan.entity.Account">
update t_account
<set>
<if test="username!=null">
username=#{username},
</if>
<if test="password!=null">
password=#{password},
</if>
<if test="age!=0">
age=#{age}
</if>
</set>
where id=#{id}
</update><6> foreach标签
foreach标签可以迭代生成一系列值,这个标签主要用于SQL的in语句,例如通过多个id查询多条记录。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18package com.huan.entity;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.List;
public class Account {
private Long id;
private String username;
private String password;
private int age;
private List<Long> ids;
}1
2//测试foreach标签
public List<Account> findByIds(Account account);1
2
3
4
5
6
7
8<select id="findByIds" parameterType="com.huan.entity.Account" resultType="com.huan.entity.Account">
select * from t_account
<where>
<foreach collection="ids" open="id in (" close=")" item="id" separator=",">
#{id}
</foreach>
</where>
</select>