MyBatis

Myatis的使用执行流程:

1.创建SqlMapConfig.xml配置文件,配置连接数据库的参数信息和mapper的映射对象

2.SqlSessionFactoryBuilder读取SqlMapConfig.xml文件流,构建出SqlSessionFactory对象

3.SqlSessionFactory读取SqlMapConfig.xml中的信息产生真正操作数据库的SqlSession对象

4.SqlSession利用getMapper(ClassType)用来生成代理接口对象,定义通用的增删改查方法,还可以对事务进行提交,回滚,关闭资源等操作

5.注解和xml的开发方式示例:

注解:
@Select("select * from user")
public List findAll();
xml:

    
    

1.基于代理 Dao 实现 CRUD 操作

查询操作:



细节:

resultType 属性:用于指定结果集的类型。
parameterType 属性:用于指定传入参数的类型。
sql 语句中使用#{}字符:它代表占位符, 相当于原来 jdbc 部分所学的'?',都是用于执行语句时替换实际的数据,具体的数据是由#{}里面的内容决定的。

保存操作:



    insert into user(username,birthday,sex,address)
    values(#{username},#{birthday},#{sex},#{address})




    
    
        select last_insert_id();
    
    insert into user(username,birthday,sex,address)
    values(#{username},#{birthday},#{sex},#{address})

更新操作:


    update user set username=#{username},birthday=#{birthday},sex=#{sex},
    address=#{address} where id=#{id}

删除操作:


delete from user where id = #{uid}

模糊查询:

使用concat()进行字符拼接法:
List findUser(@Param("name") String name);


事先在代码中将各个参数拼接好"%",然后在dao层指定各个参数的别名方法:
List findUser(@Param("name") String name,@Param("address") String address);


聚合函数查询:


resultMap 结果类型:

resultMap 标签可以建立查询的列名和实体类的属性名称不一致时建立对应关系。从而实现封装。在 select 标签中使用 resultMap 属性指定引用即可。同时 resultMap 可以实现将查询结果映射为复杂类 型的 pojo,比如在查询结果映射对象中包括 pojo 和 list 实现一对一查询和一对多查询。

1.定义resultMap:


    
    
    
    
    

属性介绍:

type 属性:指定实体类的全限定类名
id 属性:给定一个唯一标识,是给查询 select 标签引用用的
column 属性:用于指定数据库列名
property 属性:用于指定实体类属性名称

标签介绍:

id标签:用于指定主键字段
result 标签:用于指定非主键字段

2.引用resultMap:


动态sql

1.标签:


标签的 test 属性中写的是对象的属性名,如果是包装类的对象要使用 OGNL(写法样式:user.username,user.address等) 表达式的写法。

2.标签:引用创建好的sql语句

创建sql语句:

        select * from user

引用:

3.标签:


SQL 语句:select 字段 from user where id in (?)
标签用于遍历集合,它的属性:
collection:代表要遍历的集合元素,注意编写时不要写#{}
open:代表语句的开始部分
close:代表结束部分
item:代表遍历集合的每个元素,生成的变量名
sperator:代表分隔符

多表查询

one对many:

例如一个用户有多个账户,一个账户只能对应一个用户,
则user实体类中含有private List accounts属性,
account实体类中含有private User user属性

1.多对一:查询账户中的信息包含该账户的的用户信息操作
调用user的findById方法查询:

    
    
    
    
    
        
        
           
    



前提是接口UserDao中有findById(uid)这个方法
select: 填写我们要调用的 select 映射的 id
column : 填写我们要传递给 select 映射的参数

不调用方法,使用外联查询:

    
    
    
    
        
        
        
        
        
    




association:用于many对one时,关联"one"的结果集
column:用于指定根据对象的哪个属性来查找结果集。
javaType:封装的类型

2.一对多:查询所有用户信息及用户关联的账户信息
调用account的findById方法查询封装accounts:

    
    
    
    
    
    
        
        
        
    



ofType 用于指定集合元素的数据类型
select 是用于指定查询账户的唯一标识(账户的 dao 全限定类名加上方法名称)
column 是用于指定使用哪个字段的值作为条件查询

不调用方法:
    

        
        
        
        
        
        
            
            
            
        
    
    
    
    

collection:用于one对many时,关联"many"的结果集
结果集中的属性:
property:关联查询的结果集存储在对象中的哪个属性上。
ofType:指定关联查询的结果集中的对象类型即 List中的对象类型。此处可以使用别名,也可以使用全限定名。

many对many:

例如一个用户对应多个角色,一个角色对应多个用户,
则user实体类中含有private List Roles属性,
role实体类中含有private List Users属性

查询角色信息,并且展示角色中的用户信息:

    
    
    
    
        
        
        
        
        
    



MyBatis的注解开发

常用注解:

@Insert:实现新增
@Update:实现更新
@Delete:实现删除
@Select:实现查询
@Result:实现结果集封装
@Results:可以与@Result 一起使用,封装多个结果集
@ResultMap:实现引用@Results 定义的封装
@One:实现一对一结果集封装
@Many:实现一对多结果集封装
@SelectProvider: 实现动态 SQL 映射
@CacheNamespace:实现注解二级缓存的使用

查询所有用户:
@Select("select * from user")
@Results(id="userMap",value= {
    @Result(id=true,column="id",property="userId"),
    @Result(column="username",property="userName"),
    @Result(column="sex",property="userSex"),
    @Result(column="address",property="userAddress"),
    @Result(column="birthday",property="userBirthday")
})
List findAll();

如果实体类中的属性名和数据库中的列名一一对应,可以省略@Results注解

根据id查询用户:
@Select("select * from user where id = #{uid} ")
@ResultMap("userMap")
User findById(Integer userId);
保存(添加)用户:
@Insert("insert into user(username,sex,birthday,address)values(#{username},#{sex},#{birthday},#{address})")
void saveUser(User user);
保存(添加)用户并返回新增用户的id值:
@Insert("insert into user(username,sex,birthday,address)values(#{username},#{sex},#{birthday},#{address})")
@SelectKey(keyColumn="id",keyProperty="id",resultType=Integer.class,before =false, statement = { "select last_insert_id()" })
int saveUser(User user);
更改用户数据:
@Update("update user set username=#{username},address=#{address},sex=#{sex},birthday=#{birthday} where id=#{id} ")
void updateUser(User user);
根据用户id删除用户:
@Delete("delete from user where id = #{uid} ")
void deleteUser(Integer userId);
使用聚合函数:
@Select("select count(*) from user ")
void findTotal();
模糊查询:
@Select("select * from user where username like concat('%',#{username},'%') ")
List findByName(String name);

使用注解实现复杂关系映射开发

在使用注解开发时我们需要借助 @Results 注解, @Result 注解, @One 注解, @Many 注解。

@Resutl 注解代替了 标签和标签

属性介绍:
id 是否是主键字段
column 数据库的列名
property 需要装配的属性名
one 需要使用的@One 注解(@Result(one=@One)()))
many 需要使用的@Many 注解(@Result(many=@many)()))

@One 注解(一对一)

代替了标签,是多表查询的关键,在注解中用来指定子查询返回单一对象。
使用格式:
@Result(column=" ",property="",one=@One(select=""))
select 指定用来多表查询的 sqlmapper
fetchType 会覆盖全局的配置参数 lazyLoadingEnabled。。

@Many 注解(多对一)

代替了标签,是是多表查询的关键,在注解中用来指定子查询返回对象集合。
注意:聚集元素用来处理“一对多”的关系。需要指定映射的 Java 实体类的属性,
属性的 javaType(一般为 ArrayList)但是注解中可以不定义;
使用格式:
@Result(property="",column="",many=@Many(select=""))

查询所有账户信息包括账户中的user信息并使用延迟加载:
@Select("select * from account")
@Results({
    @Result(id=true,column="id",property="id"),
    @Result(column="uid",property="uid"),
    @Result(column="money",property="money"),
    @Result(column="uid",property="user",one=@One(select="com.haha.dao.IUserDao.findById",fetchType=FetchType.LAZY))
})
List findAll();
如果将来要对@Results进行引用应用,@Results中的需要添加id和value标签:
@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(column="uid",property="user",one=@One(select="com.haha.dao.IUserDao.findById",fetchType=FetchType.LAZY))
})
List findAll();

@Select("select * from account where aid = #{aid} ")
@ResultMap("accountMap")
Account findById(Integer accountId);
查询所有用户信息包括用户中的账户信息并使用延迟加载:
@Select("select * from user")
@Results({
    @Result(id=true,column="id",property="userId"),
    @Result(column="username",property="userName"),
    @Result(column="sex",property="userSex"),
    @Result(column="address",property="userAddress"),
    @Result(column="birthday",property="userBirthday"),
    @Result(column="id",property="accounts",many=@Many(select="com.haha.dao.IAccountDao.findByUid",fetchType=FetchType.LAZY))
    })
List findAll();

MyBatis的缓存:

一级缓存

一级缓存是 SqlSession 级别的缓存,只要 SqlSession 没有 flush 或 close,它就存在。当调用 SqlSession 的修改,添加,删除, commit(),
close()等方法时,就会清空一级缓存。

二级缓存

二级缓存是 mapper 映射级别的缓存,多个 SqlSession 去操作同一个 Mapper 映射的 sql 语句,
多个SqlSession 可以共用二级缓存,二级缓存是跨 SqlSession 的。

在 SqlMapConfig 中开启二级缓存支持:




使用二级缓存
@CacheNamespace(blocking=true)//mybatis 基于注解方式实现配置二级缓存
public interface IUserDao {}

因为 cacheEnabled 的取值默认就为 true,所以这一步可以省略不配置。为 true 代表开启二级缓存;为
false 代表不开启二级缓存。
当我们在使用二级缓存时,所缓存的类一定要实现 java.io.Serializable 接口,这种就可以使用序列化
方式来保存对象。

你可能感兴趣的:(MyBatis)