title: mybatis入门_配置文件的配置
date: 2019-11-13 16:34:10
tags:
categories:

  • mybatis

一.全局配置文件配置


  • 1.1 properties标签

Properties标签可以用来加载配置文件.例如,我们可以将数据库的连接信息放入到配置文件db.properties中

db.properties

  1. db.driver=com.mysql.jdbc.Driver
  2. db.url=jdbc:mysql://localhost:3306/mybatis?useUnicode=true&characterEncoding=utf8
  3. db.username=root
  4. db.password=root

在全局配置文件SqlMapConfig.xml中引入该配置文件:

  1. <!-- 指定数据库连接信息的位置 -->
  2. <properties resource="db.properties"/>

然后就可以在全局配置文件的关于数据库的配置信息里使用配置文件的信息了

  1. <dataSource type="POOLED">
  2. <!-- 数据库驱动 -->
  3. <property name="driver" value="${db.driver}"/>
  4. <!-- 数据库地址 -->
  5. <property name="url" value="${db.url}"/>
  6. <!-- 数据库用户 -->
  7. <property name="username" value="${db.username}"/>
  8. <!-- 数据库密码 -->
  9. <property name="password" value="${db.password}"/>
  10. </dataSource>

加载properties的顺序:

  • 先加载标签下的property标签.观察有没有对应的键值对

  • 加载properties的resource属性指定的配置文件。注意.这一步如果与上一步重名,那么将会覆盖上一步声明的属性。例如以下代码中的property声明的属性将会被后加载的配置文件的相同的属性给覆盖:
    mybatis入门-配置文件的配置 - 图1

    “ class=”align-none”>

  • 优先级最高的是paramterType中传入的值.(这也是在配置文件中写db.username而不写username的原因..避免不必要的覆盖!)


  • 1.2 typeAlias.

1.2.1 mybatis默认支持的别名

别名 映射的类型
_byte byte
_long long
long Long
_short short
_int int
_integer int
_double double
_float float
_boolean boolean
string String
byte Byte
short Short
int Integer
integer Integer
double Double
float Float
boolean Boolean
date Date
decimal BigDecimal
bigdecimal BigDecimal

1.2.2 自定义别名

Mybatis对于基本的数据类型定义了别名,我们可以为我们自己创建的Pojo类定义别名.定义别名采用的是标签.

  1. <!-- 定义别名 -->
  2. <typeAliases>
  3. <typeAlias name="com.qst.pojo.user" alias="user" />
  4. </typeAliases>

现在我们就可以使用别名了:

  1. <select id="selectEmployeeRealationById" parameterType="Integer" resultType="user">
  2. select empid,name,gender,birthday,mobile,email,position,note
  3. from tb_employee where empid=#{empId}
  4. </select>

批量定义别名.(用于定义包)包下面的类的别名默认为类名.首字母大小写即可.

  1. <!-- 批量定义别名 -->
  2. <typeAliases>
  3. <package name="com.qst.pojo" />
  4. </typeAliases>

使用别名:

  1. <mapper namespace="com.qst.dao.EmployeeDao">
  2. <select id="selectEmployeeRealationById"
  3. parameterType="Integer" resultType="user">
  4. select
  5. empid,name,gender,birthday,mobile,email,position,note
  6. from tb_employee
  7. where empid=#{empId}
  8. </select>
  9. </mapper>

1.3 mapper标签

mapper标签用于引入mapper配置文件.

1.3.1

  1. <mapper resource=""/> //使用相对于类路径的资源

如:

  1. <mapper resource="sqlmap/User.xml" />

1.3.2

  1. <mapper url=""/>//使用完全限定路径

如:

  1. <mapper url="file:///D:\workspace\mybatis_01\config\sqlmap\User.xml" />

1.3.3

  1. <mapper class=""/>//使用mapper接口的全限定名

如:

  1. <mapper class="cn.itcast.mybatis.mapper.UserMapper"/>

注意:此种方法要求mapper接口和mapper映射文件要名称相同,且放到同一个目录下;

1.3.4

  1. <package name=""/>(推荐)注册指定包下的所有映射文件

如:

  1. <package name="cn.itcast.mybatis.mapper"/>

注意:此种方法要求mapper接口和mapper映射文件要名称相同,且放到同一个目录下;

如下所示:
mybatis入门-配置文件的配置 - 图2


二.Mapping映射文件配置


2.1 传递输入参数

2.1.1 传递包装Pojo

包装Pojo即一个类,当中有一个属性为一个Pojo.而我们所需要的属性被封装在Pojo

下面是示例:我们将要查询的信息封装在一个Pojo类User中.然后将User类封装在UserQueryVO中.

  1. public class UserQueryVO {
  2. private User user ;
  3. public User getUser() {
  4. return user;
  5. }
  6. public void setUser(User user) {
  7. this.user = user;
  8. }
  9. }

紧接着我们需要在mapper配置文件的输入参数parameterType中声明这个类.

  1. <select id="selectEmployeeRealationById" parameterType="com.qst.mapper.UserQueryVO"
  2. resultType="user">

然后需要写SQL语句了.获取对应的属性值直接属性名.属性值即可.(无论嵌套多少层都没事)

  1. select empid,name,gender,birthday,mobile,email,position,note
  2. from tb_employee where empid=#{empId}

2.1.2 传入HashMap

同传递POJO对象一样,map的key相当于pojo的属性。

  1. @Test
  2. public void testMapper2() {
  3. SqlSession session = factory.openSession();
  4. UserMapper mapper = session.getMapper(UserMapper.class);//建立代理对象
  5. Map<String,String> map=new HashMap<>();
  6. map.put("username", "小明");
  7. map.put("sex", "1");
  8. List<User> users = mapper.findUserByQueryMap(map);
  9. System.out.println(users);
  10. }

2.2 输出映射

2.2.1 resultType的要点

查询的列名和映射的pojo的属性名一致,使用resultType映射才会成功。

如果查询的列名和映射的pojo的属性名全部不一致,则映射的pojo为null。

如果查询的列名和映射的pojo的属性名有一个一致,则映射的pojo不为null,而且只有一致的那一个属性才有值。

2.2.2 resultType为简单类型

  1. @Test
  2. public void testResult1() {
  3. SqlSession session = factory.openSession();
  4. UserMapper mapper = session.getMapper(UserMapper.class);//建立代理对象
  5. int count = mapper.selectCount();
  6. System.out.println(count);
  7. }

2.2.3 Pojo/Pojo集合

ResultType为单列的数据的类型.

2.2.4 resultMap

使用要求:

使用resultMap进行结果映射时,不需要查询出的列名和映射的pojo的属性名一致。但是需要定义一个resultMap标签来完成列名和属性名的映射关系。

需求:

将以下sql查询出的结果进行映射。

  1. Select id id_,username username_,sex sex_ from user where id = 1

由于查询出的数据的名称与Pojo类的属性不一致,因此无法直接用resultType对结果进行映射.

所以我们采用resultMap进行映射.

具体方法如下:

1.在UserMapper.xml中进行配置

2/在UserMapper中添加方法

3.进行测试

  1. @Test
  2. public void testResult2() {
  3. SqlSession session = factory.openSession();
  4. UserMapper mapper = session.getMapper(UserMapper.class);//建立代理对象
  5. User user = mapper.selectByResultMap(1);
  6. System.out.println(user);
  7. }

2.3 动态sql拼接

在mybatis提供了一些动态标签,可以帮助开发人员更快,更方便的开发出持久层的代码,常见的动态标签有if标签,

Where标签,foreach标签,sql片段标签.

2.3.1 if标签

在前面的关联查询中,我们用了下面的sql语句去根据关键字查询.但是这样实际是不合理的.

因为可能用户在输入的时候,根本就没有输入Username,只输入了其中的一项(这时候只能根据这一项进行查询),或者甚至什么都没有输入(这时候应该查询出全部).而我们是没有办法提前去判断用户的输入条件的.这时候就

需要根据用户输入的条件,动态的改变sql语句.用到了if标签.if标签用法如下,在if中书写需要判断的表达式,mybatis将会根据判断的结果动态的将sql语句拼接起来.

  1. <!-- 通过if标签完成检索 -->
  2. <select id="findUserByQuery" parameterType="com.xyy.po.UserQueryVO" resultType="user">
  3. SELECT * FROM USER WHERE 1=1
  4. <!-- 如果用户输入了username的情况下,才会进行关联查询.test内书写表达式 -->
  5. <if test="user!=null">
  6. <if test="user.username!=null and user.username!=''">
  7. AND username LIKE '%${user.username}%'
  8. </if>
  9. <!-- 如果用户输入了sex的情况下,才会进行关联查询.test内书写表达式 -->
  10. <if test="user.sex!=null and user.sex!=''">
  11. and sex=#{user.sex};
  12. </if>
  13. </if>
  14. </select>

2.3.2 where标签

实际上在关联查询的where后面先拼接1=1是不好的做法,因为它会降低效率.更好的做法是用where标签去替代:

Where标签可以判断后面有没有内容.如果后面只有1个内容,就会将and去掉.并且拼接上where.如果后面有两个或者以上的条件,那么将第一个条件,即where后面的条件,去掉and,然后将其他条件的and保留.如果后面没有

条件,则在主的sql语句后面不会添加where关键字.具体做法如下:

  1. <select id="findUserByQuery" parameterType="com.xyy.po.UserQueryVO" resultType="user">
  2. SELECT * FROM USER
  3. <!-- 什么都没输,直接输出SELECT * FROM USER -->
  4. <where>
  5. <!-- 如果user.username!=null而user.sex==null那么将会输出WHERE username LIKE '%${user.username}%'.(默认去掉where后的第一个and) -->
  6. <if test="user!=null">
  7. <if test="user.username!=null and user.username!=''">
  8. AND username LIKE '%${user.username}%'
  9. </if>
  10. <if test="user.sex!=null and user.sex!=''">
  11. and sex=#{user.sex};
  12. </if>
  13. </if>
  14. </where>
  15. </select>

2.3.3 sql片段

Sql片段方便我们将一些sql语句中相同的部门提取出来,先声明为sql片段,然后在书写sql语句的时候,直接引用这些sql片段即可.注意,sql片段应该具有可复用性.具体做法如下所示:

  1. <sql id="queryUser">
  2. <if test="user!=null">
  3. <if test="user.username!=null and user.username!=''">
  4. AND username LIKE '%${user.username}%'
  5. </if>
  6. <if test="user.sex!=null and user.sex!=''">
  7. AND sex=#{user.sex};
  8. </if>
  9. </if>
  10. </sql>
  11. <!-- 通过if标签完成检索 -->
  12. <select id="findUserByQuery" parameterType="com.xyy.po.UserQueryVO" resultType="user">
  13. SELECT * FROM USER
  14. <!-- 什么都没输,直接输出SELECT * FROM USER -->
  15. <where>
  16. <include refid="queryUser"></include>
  17. </where>
  18. </select>

2.3.4 foreach标签.

例如,如果需要根据传入的一系列的id,去查询对应的用户,要怎么做呢?

这种需求所对应的sql语句应该如下:

  1. SELECT * FROM USER WHERE id IN (…)

括号内放的是传入的所有id值.而我们在mybatis可以通过foreach标签来完成对于传入的集合的遍历.具体做法如下所示:

  1. <!-- collection为要遍历的元素.open为在遍历前要拼接的语句,close为要遍历后要拼接的语句 -->
  2. <!-- separator为遍历的每一个项目之间的分隔符,item为遍历的项目的标识(相当于JSTLeach标签的var) -->
  3. <if test="ids!=null and ids.size>0">
  4. AND id IN
  5. <foreach collection="ids" open="(" close=")" separator="," item="id" >
  6. #{id}
  7. </foreach>
  8. <!-- 上述形式不固定,只要能拼接成AND id IN (id,id,id)即可(id表示每次遍历得到的id) -->
  9. </if>

上面的是通过POJO对象传入List集合,实际上我们可以直接传入List集合.代码如下:

需要注意的是获取这个List集合,mybatis声明的变量为list.而这个变量变量名是不可以改变的.

  1. <!-- 通过直接传入List集合完成检索 -->
  2. <select id="findUserByQueryList" parameterType="java.util.List" resultType="user">
  3. SELECT * FROM USER
  4. <!-- 什么都没输,直接输出SELECT * FROM USER -->
  5. <where>
  6. <if test="list!=null and list.size>0">
  7. id IN
  8. <foreach collection="list" open="(" close=")" item="id" separator=",">
  9. #{id}
  10. </foreach>
  11. </if>
  12. </where>
  13. </select>

加油