MyBatis 灵活的ORM框架

MyBatis     灵活的ORM框架

理解ORM的概念
掌握MyBatis框架的构建
了解MyBatis的相关配置
掌握多表映射技术
掌握动态SQL语句处理


什么是MyBatis?
    (了解)MyBatis的前身是iBatis,是Apache基金会的开源的项目,该框架可以自定义SQL语句与实体映射关系,屏除了大部分JDBC代码、手动设置参数和结果集的重获,通过简单的XML或注解来配置和映射基本数据类型、Map接口和POJO到数据库记录。该项目于2010年5月代码库迁至GooleCode,后更名为MyBatis。

ORM
    对象关系映射,全称是Object    Relational    Mapping,是一种为了解解决面向对象与关系数据库存在的互不匹配的现象的技术。
    ORm通过使用描述对象和数据库之间映射的元数据,将Java程序中的对象自动持久化到数据库中。本质上就是将数据从一种形式转化到另一种形式。

ORM可以方便地将Java中的对象与数据库中的表进行统一化操作。




框架构建
    构建MyBatis框架的步骤
       1、导入MyBatis所需的Jar包
       2、classPath中添加MyBatis配置文件
       3、创建数据表的映射类
       4、创建映射类的Dao接口
       5、编写映射类的Dao映射文件

1、导入MyBatis所需的jar包
mybatis-3.3.0.jar
2、添加配置文件   在classpath中添加 config.xml文件
     
     
     
     
  1. xml version="1.0" encoding="UTF-8"?>
  2. PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
  3. "http://mybatis.org/dtd/mybatis-3-config.dtd">
  4. type="com.niit.bean.Employee" alias="emp"/>
  5. default="niit">
  6. id="niit">
  7. type="JDBC">
  8. type="POOLED">
  9. name="driver" value="oracle.jdbc.driver.OracleDriver"/>
  10. name="url" value="jdbc:oracle:thin:@192.168.9.11:1521:niit"/>
  11. name="username" value="system"/>
  12. name="password" value="niit"/>
  13. resource="com/niit/mapper/empMapper.xml"/>
enviroments表示配置框架的基本环境
default表示默认的配置
enviroment的id应和default一致
transactionManger表示设置事务处理方式            type值分为JDBC和MANAGED
                JDBC表示使用JDBC的提交回滚功能
                MANAGED表示什么也不做,不提交,回滚,关闭连接
dataSource表示设置数据源        type值有UNPOOLED,POOLED,JNDI
                  UNPOOLED表示非数据池连接,每次请求都将开启一个新的数据库连接
                POOLED表示数据池连接方式,缓存数据库连接对象
                JNDI表示与服务器配套的远程连接数据源
Property的name值都是固定写法


使用typeAliases简化实体类的使用
            简化后的实体类可以通过别名直接在映射文件mapper中使用,如parameterType、resultType属性

3、创建数据表的映射类
table    user对应的User类
4、创建映射类的dao接口
如:EmpDao.java
     
     
     
     
  1. public interface EmpDao {
  2. /**
  3. * 查询所有员工信息
  4. * @return
  5. */
  6. public List<Employee> findAllEmps();
  7. }
5、编写dao的映射文件 XXXMapper.xml     该映射文件配置用于建立实体类和数据表的联系
如EmpDao.java编写一个empMapper文件,在MyBatis配置文件通过mapper建立映射关系(resource设置完整的路径)
     
     
     
     
  1. resource="com/niit/mapper/empMapper.xml"/>
empMapper.xml文件
     
     
     
     
  1. xml version="1.0" encoding="UTF-8" ?>
  2. PUBLIC "-//ibatis.apache.org//DTD Mapper 3.0//EN"
  3. "http://ibatis.apache.org/dtd/ibatis-3-mapper.dtd">
  4. namespace="com.niit.dao.EmpDao">
  5. id="findAllEmps" resultType="com.niit.bean.Employee">
  6. select employee_id ,first_name as firstName,last_name as lastName,salary,hire_date as hireDate from emp




MyBatis有着非常灵活的操作方式,SQL语句由开发人员自己控制。
实体映射文件配置说明
    select                                    映射查询语句
    insert                                     映射新增语句
    update                                   映射修改语句 
    delete                                    映射删除语句

(1)namespace属性设置对应的dao接口  (一个dao接口对应一个mapper文件)
(2)所有增删改查操作必须设置id属性,表示dao中对应的方法
(3)方法参数使用parameterType和parameterMap(后面会详细讲解)
(4)查询的返回值使用resultType或者resultMap(多表映射会详细讲解)

     
     
     
     
  1. id="findAllEmps" resultType="com.niit.bean.Employee">
  2. select employee_id ,first_name as firstName,last_name as lastName,salary,hire_date as hireDate from emp
  3. id="modifyEmp" parameterType="com.niit.bean.Employee">
  4. update emp set salary=#{salary}, hire_date=#{hireDate} where employee_id=#{empId}

参数值:
parameterType应用:表示参数的类型
    默认类型为map,表示参数为map集合,parameterType写入的参数,在SQL语句中可以通过#{属性}或#{键名}的方式访问对象的数据或map集合的数据
    1、如果值为基本数据类型 ,如int 则可以使用#{任意值}访问
    2、如果值为对象,如Employee类则可以使用#{属性名}访问

parameterMap很少使用,不做介绍

关于多个参数传入的方式:
(1)根据索引访问传入的数据
     
     
     
     
  1. public List<Employee> findEmpsByDateAndSalary(Date date, double salary);
  2. <select id="findEmpsByDateAndSalary" resultType="emp">
  3. select employee_id ,first_name as firstName,last_name as lastName,salary,hire_date as hireDate from emp
  4. where hire_date&lt;#{0} and salary>#{1}
  5. select>

(2)使用Map传入多个参数,根据#{键名}访问传入的数据
     
     
     
     
  1. public List<Employee> findEmpsByDateAndSalary(Map<String, Object> map);
  2. <select id="findEmpsByDateAndSalary" parameterType="map" resultType="emp">
  3. select employee_id ,first_name as firstName,last_name as lastName,salary,hire_date as hireDate from emp
  4.        where hire_date&lt;#{date} and salary>#{money}
  5. select>

(3)使用JavaBean传入多个参数,将多个参数封装成Java对象,根据#{属性名}访问传入的数据
                       跟传入对象参数一致
(4)使用@param注解访问多个参数
    
    
    
    
  1. public List<Employee> findEmpsByDateAndSalary(@Param("hireDate")Date date, @Param("money") double salary);
  2. <select id="findEmpsByDateAndSalary" resultType="emp">
  3. select employee_id ,first_name as firstName,last_name as lastName,salary,hire_date as hireDate from emp
  4.    where hire_date&lt;#{hireDate} and salary>#{money}
  5. select>

               

返回值
resultType的使用:设置返回值的类型,对于返回类型为集合,只需要泛型的类型即可。
如上的多个参数的例子中返回为List集合,但只需要设置resultType=com.niit.bean.Employee



*resultMap的使用
     
     
     
     
  1. type="emp" id="empMap">
  2. property="empId" column="employee_id"/>
  3. property="empName" column="employee_name"/>
resultMap的type属性表示设置实体对象, id表示设置resultMap的别名
id表示主键字段,result表示普通字段
property表示实体对象中用于映射column的属性名(即实体bean的属性名)
column表示数据表的字段名
定义好的resultMap可以直接通过id值来使用
     
     
     
     
  1. id="findEmpsByDateAndSalary" resultMap="empMap">
  2. select employee_id ,empName from emp
  3. where hire_date<#{0} and salary>#{1}

执行数据操作时,如果实体对象的属性名和数据表的字段名不匹配,会出现sql异常,并提示标识符无效
  MyBatis 灵活的ORM框架_第1张图片

使用MyBatis框架实现数据访问
MyBatis 灵活的ORM框架_第2张图片
(1)读取配置文件
(2)创建SessionFactoryBuilder
(3)创建SessionFactory
(4)打开Session
(5)获取dao实例
     
     
     
     
  1. //读取资源文件
  2. Reader reader = Resources.getResourceAsReader("config.xml");
  3. //创建sqlSessionFactoryBuilder
  4. SqlSessionFactoryBuilder builder = new SqlSessionFactoryBuilder();
  5. //使用构建器根据资源文件创建会话工厂
  6. SqlSessionFactory factory = builder.build(reader);
  7. //使用会话工厂打开会话,会话表示应用服务器与数据库的通信,封装了JDBC的API对象
  8. SqlSession session = factory.openSession();
  9. //根据映射文件获取DAO的实现类
  10. EmpDao empDao = session.getMapper(EmpDao.class);
(6)执行查询操作或增删改操作
     
     
     
     
  1. List<Employee> list = empDao.findEmpsByDateAndSalary(new SimpleDateFormat("yyyy-MM-dd").parse("2005-1-1"), 6000);
  2. for(Employee emp : list){
  3. System.out.println(emp.getEmpId()+"\t"+emp.getFirstName()+"\t"+emp.getSalary()+"\t"+new SimpleDateFormat("yyyy-MM-dd").format(emp.getHireDate()));
  4. }

(7)提交关闭session
对于增删改的操作需要提交事务
     
     
     
     
  1. //提交事务(查询操作不需要提交事务)
  2. session.commit();
  3. //关闭会话(断开数据库连接,释放占用资源)
  4. session.close();



序列自动增长(只做了解,因为数据库增加记录的操作都需要自己提供如Oracle的XXX.nextVal)
在执行insert操作时
     
     
     
     
  1. id="" parameterType="" >
  2. //先查询自增主键值
  3. order="BEFORE" keyProperty="empId" resultType="int" >
  4. select empId.nextVal from dual
  5. insert into emp values(#{empId},......)0
selectKey中的keyProperty属性表示产生后的序列。
执行insert操作时,先查询自增主键值,在insert的SQL语句中用#{keyProperty}访问序列值。
(该操作还不如在SQL直接使用nextVal插入序列值)



多表映射
        ORM框架的核心就是多表映射,MyBatis的多表映射主要分为
                   一对多映射
                   多对一映射
  (在Hibernate中还有个多对多映射)

多表映射能以面向对象的方式基于一个对象来获取多表的关联数据。

多对一映射
    多对一映射主要用于字表映射。根据外检查询主表映射的对象。
如下映射的实体类
     
     
     
     
  1. public class Employee {
  2. private int empId;
  3. private String firstName;
  4. private String lastName;
  5. private double salary;
  6. private Date hireDate;
  7. //多对一的关联映射(将表中的外键映射为对象)
  8. private Department dep;
  9. 。。。。。。
  10. }
      
      
      
      
  1. public class Department {
  2. private int depId;
  3. private String depName;
  4. 。。。。。。
  5. }
多对一映射在实体映射文件中配置
     
     
     
     
  1. type="com.niit.bean.Employee" id="empMap">
  2. property="empId" column="employee_id"/>
  3. property="firstName" column="first_name"/>
  4. property="lastName" column="last_name"/>
  5. property="hireDate" column="hire_date"/>
  6. property="salary" column="salary"/>
  7. property="dep" javaType="dep">
  8. property="depId" column="department_id"/>
  9. property="depName" column="department_name"/>
association表示外键映射的实体bean,需要配置该实体类与数据表的相关映射
property表示外键映射的对象在当前类的的属性名;
javaType表示该对象对应的类型

映射SQL语句需要以外键作为关联条件,将外键映射对象的数据一并查询出来。
      
      
      
      
  1. id="findEmpAndDepById" parameterType="int" resultMap="empMap">
  2. select employee_id ,first_name,last_name ,salary,hire_date,emp.department_id,department_name from emp,dep
  3. where employee_id=#{empId} and emp.department_Id=dep.department_id
效率高的可以使用相关子查询,注意查询的列需要和property值一致 如:(select department_name from dep where   emp.department_Id=dep.department_id  ) as depName 需要取别名。



一对多映射
            映射的实体bean
      
      
      
      
  1. public class Department {
  2. private int depId;
  3. private String depName;
  4. //一对多映射
  5. private List<Employee> empList;
  6. 。。。。。。。
  7. }
       
       
       
       
  1. public class Employee {
  2. private int empId;
  3. private String firstName;
  4. private String lastName;
  5. private double salary;
  6. private Date hireDate;
  7. 。。。。。。
  8. }
一对多映射在映射文件中配置
     
     
     
     
  1. namespace="com.niit.dao.DepDao">
  2. type="dep" id="depMap">
  3. property="depId" column="department_id"/>
  4. property="depName" column="department_name"/>
  5. property="empList" ofType="emp">
  6. property="empId" column="employee_id"/>
  7. property="firstName" column="first_name"/>
  8. property="lastName" column="last_name"/>
  9. property="salary" column="salary"/>
  10. property="hireDate" column="hire_date"/>
  11. property="dep" javaType="dep">
  12. property="depId" column="department_id"/>
  13. property="depName" column="department_name"/>
  14. id="findDepById" parameterType="int" resultMap="depMap">
  15. select dep.department_id,department_name,employee_id,first_name,last_name,hire_date,salary
  16. from emp,dep where emp.department_id=dep.department_id and dep.department_id=#{id}
collection表示一对多的集合,ofType表示集合的对象的类型


动态SQL
    动态SQL语句是MyBatis的强大特性,用于灵活的进行SQL语句的拼接。
主要有
        if
        choose(when,otherwise)
        foreach

(1)if语句主要用于多条件的拼接
当业务逻辑中有多个条件筛选,则SQL语句中可能只有一个条件,也可能会有多个条件,if语句可以进行很好的拼接。
例如:选择商品根据多个条件进行查询时
     
     
     
     
  1. public List findEmpBySalary(@Param("min") double minSalary, @Param("max") double maxSalary);
  2. id="findEmpBySalary" resultMap="empMap">
  3. select employee_id,first_name,last_name,salary,hire_date from emp where 1=1
  4. test="min!=0">
  5. and salary>=#{min}
  6. test="max!=0">
  7. and salary<=#{max}
注意点:在映射文件里<用<表示;
               int类型和0比较,引用类型和null比较;

(2)choose语句用于多条件的拼接
当从多个条件选项中选择一个匹配的,可以通过choose语句实现。
     
     
     
     
  1. public List findEmpByEmpIdOrDepName(@Param("empId") int empId,@Param("depName") String depName);
  2. id="findEmpByEmpIdOrDepName" resultMap="empMap">
  3. select employee_id,first_name,last_name,salary,hire_date from emp,dep where emp.department_id=dep.department_id
  4. test="empId!=-1 and depName==null">
  5. and employee_id=#{empId}
  6. test="empId==-1 and depName!=null">
  7. and department_name=#{depName}
  8. and salary>=10000

(3)foreach语句用于对值的遍历
        主要用在in条件的SQL语句中
     
     
     
     
  1. public boolean deleteEmpById(List idList);
  2. id="deleteEmpById">
  3. delete from emp where employee_id where in
  4. collection="list" item="empId" open="(" close=")" separator=",">
  5. #{empId}
collection表示集合对象,默认值为list和collection,此时方法参数为集合对象;当参数类型为对象时,collection应写入对象中集合类型的属性名。
item表示遍历的元素别名
open表示foreach开始的内容
close表示foreach结束的内容
separator表示多个元素分隔的内容
foreach使用#{item}的方式获取遍历的元素值




你可能感兴趣的:(MyBatis)