框架的介绍

image.png
image.png
image.png

映射规则:就是把对应表里的数据对应到java中对应的封装类中,表字段(列名)对应类中的属性, 表里封装的数据 也就是对象例如: 学生类中的姓名,年龄,学号组成的数据

image.png

MyBatis介绍

image.png
image.png
image.png
image.png
image.png
映射配置文件

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="StudentMapper">
  6. <select id="select" resultType="com.itheima.dao.Teacher">
  7. select * from teacher
  8. </select>
  9. </mapper>

核心配置文件

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd">
  3. <!--根标签-->
  4. <configuration>
  5. <!-- 配置数据库环境标签 ,环境可以有多个,default指定使用哪一个-->
  6. <environments default="mysql">
  7. <!-- 配置数据库环境标签,这只是其中一个,用id来分辨 -->
  8. <environment id="mysql">
  9. <transactionManager type="JDBC"></transactionManager>
  10. <dataSource type="POOLED">
  11. <property name="driver" value="com.mysql.jdbc.Driver"/>
  12. <property name="url" value="jdbc:mysql://192.168.23.129:3306/db2"/>
  13. <property name="username" value="root"/>
  14. <property name="password" value="itheima888"/>
  15. </dataSource>
  16. </environment>
  17. </environments>
  18. <!-- 引入映射配置文件-->
  19. <mappers>
  20. <!-- mapper引入指定映射配置文件 resoutce属性指定配置文件名称-->
  21. <mapper resource="StudentMapper.xml"/>
  22. </mappers>
  23. </configuration>
  1. public class MyBatisTeacher {
  2. //查询全部
  3. @Test
  4. public void selectAll() throws Exception {
  5. //1.加载核心配置文件
  6. (核心配置文件)
  7. InputStream is = Resources.getResourceAsStream("MyBatisConfig.xml");
  8. //2.获取SqlSession工厂对想
  9. SqlSessionFactory factory = new SqlSessionFactoryBuilder().build(is);
  10. //3.通过SqlSession工厂对象获取SqlSession对象
  11. SqlSession sqlSession = factory.openSession();
  12. //4.执行映射配置文件中的sql语句,并接受结果
  13. (映射配置文件中的,名称空间.id属性)
  14. List<Teacher> list = sqlSession.selectList("StudentMapper.select");
  15. //5.处理结果
  16. for (Teacher teacher : list) {
  17. System.out.println(teacher);
  18. }
  19. //6.释放结果
  20. sqlSession.close();
  21. is.close();
  22. }
  23. }

image.png

MyBatis相关的API类

1.Resources

image.png
image.png

2.SqlSessionFactoryBuilder

image.png
image.png

3.SqlSessionFactory

image.png
image.png

4.SqlSession

image.png
image.png
image.png

映射配置文件介绍

image.png
3.2 查询功能

  • 查询功能标签。
  • 属性
    • id:唯一标识, 配合名称空间使用。
    • parameterType:指定参数映射的对象类型。
    • resultType:指定结果映射的对象类型。
  • SQL 获取参数格式: #{属性名}
  • 示例
  • image.png

3.3 新增功能

  • :新增功能标签。
  • 属性
    • id:唯一标识, 配合名称空间使用。
    • parameterType:指定参数映射的对象类型。
    • resultType:指定结果映射的对象类型。
  • SQL 获取参数格式: #{属性名}

  • 示例

MyBatis - 图22

3.4 修改功能

  • :修改功能标签。
  • 属性
    • id:唯一标识, 配合名称空间使用。
    • parameterType:指定参数映射的对象类型。
    • resultType:指定结果映射的对象类型。
  • SQL 获取参数格式: #{属性名}

  • 示例

MyBatis - 图23

3.5 删除功能

  • :查询功能标签。
  • 属性
    • id:唯一标识, 配合名称空间使用。
    • parameterType:指定参数映射的对象类型。
    • resultType:指定结果映射的对象类型。
  • SQL 获取参数格式: #{属性名}

  • 示例
    MyBatis - 图24

  • 总结: 大家可以发现crud操作,除了标签名称以及sql语句不一样之外,其他属性参数基本一致。

3.6 映射配置文件小结

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="com.itheima.mapper.StudentMapper">
  6. 注意下面的id属性值是可以随便起的,resultType是根据查询出来的数据要封装到哪所配置
  7. parameterType=是根据sql语句的查询参数来判断的他的数据类型,如果参数较多,数据是从来的就写那个类
  8. <!--查询所有-->
  9. <select id="selectAll" resultType="Student" >
  10. select * from student
  11. </select>
  12. <!--根据id查询-->
  13. <select id="selectById" resultType="Student" parameterType="int">
  14. select * from student where id=#{id}
  15. </select>
  16. <!--添加学生-->
  17. <insert id="insert" parameterType="Student">
  18. insert into student (id,name,age) values (#{id},#{name},#{age})
  19. </insert>
  20. <!--修改学生-->
  21. <update id="update" parameterType="Student">
  22. update student set name=#{name},age=#{age} where id=#{id}
  23. </update>
  24. <!--删除学生-->
  25. <delete id="delete" parameterType="int">
  26. delete from student where id=#{id}
  27. </delete>
  28. </mapper>

四.Mybatis核心配置文件介绍

4.1 核心配置文件介绍

核心配置文件包含了 MyBatis 最核心的设置和属性信息。如数据库的连接、事务、连接池信息等。

如下图:

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!--MyBatis的DTD约束-->
  3. <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd">
  4. <!--configuration 核心根标签-->
  5. <configuration>
  6. <!--environments配置数据库环境,环境可以有多个。default属性指定使用的是哪个-->
  7. <environments default="mysql">
  8. <!--environment配置数据库环境 id属性唯一标识-->
  9. <environment id="mysql">
  10. <!-- transactionManager事务管理。 type属性,采用JDBC默认的事务-->
  11. <transactionManager type="JDBC"></transactionManager>
  12. <!-- dataSource数据源信息 type属性 连接池-->
  13. <dataSource type="POOLED">
  14. <!-- property获取数据库连接的配置信息 -->
  15. <property name="driver" value="com.mysql.jdbc.Driver" />
  16. <property name="url" value="jdbc:mysql:///db1" />
  17. <property name="username" value="root" />
  18. <property name="password" value="root" />
  19. </dataSource>
  20. </environment>
  21. </environments>
  22. <!-- mappers引入映射配置文件 -->
  23. <mappers>
  24. <!-- mapper 引入指定的映射配置文件 resource属性指定映射配置文件的名称 -->
  25. <mapper resource="StudentMapper.xml"/>
  26. </mappers>
  27. </configuration>

4.2 数据库连接配置文件引入

  • properties标签引入外部文件

    • configuration跟标签下引入
      1. <!--引入数据库连接的配置文件-->
      2. <properties resource="jdbc.properties"/>
  • 具体使用,如下配置

    • value=”${键名}”
      1. <!-- property获取数据库连接的配置信息 -->
      2. <property name="driver" value="${driver}" />
      3. <property name="url" value="${url}" />
      4. <property name="username" value="${username}" />
      5. <property name="password" value="${password}" />

4.3 起别名

  • :为全类名起别名的父标签。
  • :为全类名起别名的子标签。
  • 属性
    type:指定全类名
    alias:指定别名
  • :为指定包下所有类起别名的子标签。(别名就是类名)
    • 通过name属性:name=”com.itheima.bean”
  • 如下图:
    MyBatis - 图25
  • 具体如下配置
    1. <!--起别名-->
    2. <typeAliases>
    3. <typeAlias type="com.itheima.bean.Student" alias="student"/>
    4. <!--<package name="com.itheima.bean"/>-->
    5. </typeAliase

4.4 总结

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!--MyBatis的DTD约束-->
  3. <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd">
  4. <!--根标签-->
  5. <configuration>
  6. <properties resource="jdbc.properties"/>
  7. <!--起别名-->
  8. <typeAliases>
  9. <typeAlias type="com.itheima.bean.Student" alias="student"/>
  10. <!--给指定包下的类起别名,别名就是类名小写-->
  11. <!-- <package name="com.itheima.bean"/>-->
  12. </typeAliases>
  13. <plugins>
  14. <plugin interceptor="com.github.pagehelper.PageInterceptor"></plugin>
  15. </plugins>
  16. <!-- 配置数据库环境标签 ,环境可以有多个,default指定使用哪一个-->
  17. <environments default="mysql">
  18. <!-- 配置数据库环境标签,这只是其中一个,用id来分辨 -->
  19. <environment id="mysql">
  20. <transactionManager type="JDBC"></transactionManager>
  21. <dataSource type="POOLED">
  22. <property name="driver" value="${driver}"/>
  23. <property name="url" value="${url}"/>
  24. <property name="username" value="${username}"/>
  25. <property name="password" value="${password}"/>
  26. </dataSource>
  27. </environment>
  28. </environments>
  29. <!-- 引入映射配置文件-->
  30. <mappers>
  31. <!-- mapper引入指定映射配置文件 resoutce属性指定配置文件名称-->
  32. <mapper resource="StudentMapper.xml"/>
  33. </mappers>
  34. </configuration>

五.Mybatis传统方式开发

5.1 Dao 层传统实现方式

  • 分层思想:控制层(controller)、业务层(service)、持久层(dao)。
  • 调用流程 ```sql / 持久层实现类 / public class StudentMapperImpl implements StudentMapper {

    /*

    1. 查询全部

    */ @Override public List selectAll() {

    1. List<Student> list = null;
    2. SqlSession sqlSession = null;
    3. InputStream is = null;
    4. try{
    5. //1.加载核心配置文件
    6. is = Resources.getResourceAsStream("MyBatisConfig.xml");
    7. //2.获取SqlSession工厂对象
    8. SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(is);
    9. //3.通过工厂对象获取SqlSession对象
    10. sqlSession = sqlSessionFactory.openSession(true);
    11. //4.执行映射配置文件中的sql语句,并接收结果
    12. list = sqlSession.selectList("StudentMapper.selectAll");
    13. } catch (Exception e) {
    14. e.printStackTrace();
    15. } finally {
    16. //5.释放资源
    17. if(sqlSession != null) {
    18. sqlSession.close();
    19. }
    20. if(is != null) {
    21. try {
    22. is.close();
    23. } catch (IOException e) {
    24. e.printStackTrace();
    25. }
    26. }
    27. }
    28. //6.返回结果
    29. return list;

    }

    /*

    1. 根据id查询

    */ @Override public Student selectById(Integer id) {

    1. Student stu = null;
    2. SqlSession sqlSession = null;
    3. InputStream is = null;
    4. try{
    5. //1.加载核心配置文件
    6. is = Resources.getResourceAsStream("MyBatisConfig.xml");
    7. //2.获取SqlSession工厂对象
    8. SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(is);
    9. //3.通过工厂对象获取SqlSession对象
    10. sqlSession = sqlSessionFactory.openSession(true);
    11. //4.执行映射配置文件中的sql语句,并接收结果
    12. stu = sqlSession.selectOne("StudentMapper.selectById",id);
    13. } catch (Exception e) {
    14. e.printStackTrace();
    15. } finally {
    16. //5.释放资源
    17. if(sqlSession != null) {
    18. sqlSession.close();
    19. }
    20. if(is != null) {
    21. try {
    22. is.close();
    23. } catch (IOException e) {
    24. e.printStackTrace();
    25. }
    26. }
    27. }
    28. //6.返回结果
    29. return stu;

    }

    /*

    1. 新增功能

    */ @Override public Integer insert(Student stu) {

    1. Integer result = null;
    2. SqlSession sqlSession = null;
    3. InputStream is = null;
    4. try{
    5. //1.加载核心配置文件
    6. is = Resources.getResourceAsStream("MyBatisConfig.xml");
    7. //2.获取SqlSession工厂对象
    8. SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(is);
    9. //3.通过工厂对象获取SqlSession对象
    10. sqlSession = sqlSessionFactory.openSession(true);
    11. //4.执行映射配置文件中的sql语句,并接收结果
    12. result = sqlSession.insert("StudentMapper.insert",stu);
    13. } catch (Exception e) {
    14. e.printStackTrace();
    15. } finally {
    16. //5.释放资源
    17. if(sqlSession != null) {
    18. sqlSession.close();
    19. }
    20. if(is != null) {
    21. try {
    22. is.close();
    23. } catch (IOException e) {
    24. e.printStackTrace();
    25. }
    26. }
    27. }
    28. //6.返回结果
    29. return result;

    }

    /*

    1. 修改功能

    */ @Override public Integer update(Student stu) {

    1. Integer result = null;
    2. SqlSession sqlSession = null;
    3. InputStream is = null;
    4. try{
    5. //1.加载核心配置文件
    6. is = Resources.getResourceAsStream("MyBatisConfig.xml");
    7. //2.获取SqlSession工厂对象
    8. SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(is);
    9. //3.通过工厂对象获取SqlSession对象
    10. sqlSession = sqlSessionFactory.openSession(true);
    11. //4.执行映射配置文件中的sql语句,并接收结果
    12. result = sqlSession.update("StudentMapper.update",stu);
    13. } catch (Exception e) {
    14. e.printStackTrace();
    15. } finally {
    16. //5.释放资源
    17. if(sqlSession != null) {
    18. sqlSession.close();
    19. }
    20. if(is != null) {
    21. try {
    22. is.close();
    23. } catch (IOException e) {
    24. e.printStackTrace();
    25. }
    26. }
    27. }
    28. //6.返回结果
    29. return result;

    }

    /*

    1. 删除功能

    */ @Override public Integer delete(Integer id) {

    1. Integer result = null;
    2. SqlSession sqlSession = null;
    3. InputStream is = null;
    4. try{
    5. //1.加载核心配置文件
    6. is = Resources.getResourceAsStream("MyBatisConfig.xml");
    7. //2.获取SqlSession工厂对象
    8. SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(is);
    9. //3.通过工厂对象获取SqlSession对象
    10. sqlSession = sqlSessionFactory.openSession(true);
    11. //4.执行映射配置文件中的sql语句,并接收结果
    12. result = sqlSession.delete("StudentMapper.delete",id);
    13. } catch (Exception e) {
    14. e.printStackTrace();
    15. } finally {
    16. //5.释放资源
    17. if(sqlSession != null) {
    18. sqlSession.close();
    19. }
    20. if(is != null) {
    21. try {
    22. is.close();
    23. } catch (IOException e) {
    24. e.printStackTrace();
    25. }
    26. }
    27. }
    28. //6.返回结果
    29. return result;

    } }

  1. <a name="d63ca79a"></a>
  2. #### 5.2 LOG4J的配置和使用
  3. - 在日常开发过程中,排查问题时难免需要输出 MyBatis 真正执行的 SQL 语句、参数、结果等信息,我们就可以借助 LOG4J 的功能来实现执行信息的输出。
  4. - 使用步骤:
  5. - ![image.png](https://cdn.nlark.com/yuque/0/2021/png/13018827/1621341530544-37de3414-15f9-46d6-b962-42ff45bb6ad0.png#align=left&display=inline&height=335&margin=%5Bobject%20Object%5D&name=image.png&originHeight=335&originWidth=584&size=93078&status=done&style=none&width=584)
  6. <a name="Dzq8A"></a>
  7. ## 核心配置文件中
  8. ```sql
  9. <?xml version="1.0" encoding="UTF-8" ?>
  10. <!--MyBatis的DTD约束-->
  11. <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd">
  12. <!--根标签-->
  13. <configuration>
  14. <!-- 数据库连接配置文件引入-->
  15. <properties resource="jdbc.properties"/>
  16. <!-- 配置LOG4J-->
  17. <settings>
  18. <setting name="logImpl" value="log4j"/>
  19. </settings>
  20. <!--起别名-->
  21. <typeAliases>
  22. <typeAlias type="com.itheima.bean.Student" alias="student"/>
  23. <!--给指定包下的类起别名,别名就是类名小写-->
  24. <!-- <package name="com.itheima.bean"/>-->
  25. </typeAliases>
  26. <plugins>
  27. <plugin interceptor="com.github.pagehelper.PageInterceptor"></plugin>
  28. </plugins>
  29. <!-- 配置数据库环境标签 ,环境可以有多个,default指定使用哪一个-->
  30. <environments default="mysql">
  31. <!-- 配置数据库环境标签,这只是其中一个,用id来分辨 -->
  32. <environment id="mysql">
  33. <transactionManager type="JDBC"></transactionManager>
  34. <dataSource type="POOLED">
  35. <property name="driver" value="${driver}"/>
  36. <property name="url" value="${url}"/>
  37. <property name="username" value="${username}"/>
  38. <property name="password" value="${password}"/>
  39. </dataSource>
  40. </environment>
  41. </environments>
  42. <!-- 引入映射配置文件-->
  43. <mappers>
  44. <!-- mapper引入指定映射配置文件 resoutce属性指定配置文件名称-->
  45. <mapper resource="StudentMapper.xml"/>
  46. </mappers>
  47. </configuration>

LOG4J配置文件

  1. # Global logging configuration
  2. log4j.rootLogger=DEBUG, stdout
  3. # Console output...
  4. log4j.appender.stdout=org.apache.log4j.ConsoleAppender
  5. log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
  6. log4j.appender.stdout.layout.ConversionPattern=%5p [%t] - %m%n

一.接口代理方式实现Dao

1.1 代理开发方式介绍

  1. 采用 Mybatis 的代理开发方式实现 DAO 层的开发,这种方式是我们后面进入企业的主流。

Mapper 接口开发方法只需要程序员编写Mapper 接口(相当于Dao 接口),由Mybatis 框架根据接口定义创建接口的动态代理对象,代理对象的方法体同上边Dao接口实现类方法。

Mapper 接口开发需要遵循以下规范:

1) Mapper.xml文件中的namespace与mapper接口的全限定名相同

2) Mapper接口方法名和Mapper.xml中定义的每个statement的id相同

3) Mapper接口方法的输入参数类型和mapper.xml中定义的每个sql的parameterType的类型相同

4) Mapper接口方法的输出参数类型和mapper.xml中定义的每个sql的resultType的类型相同

总结:

接口开发的方式: 程序员只需定义接口,就可以对数据库进行操作,那么具体的对象怎么创建?

1.程序员负责定义接口

2.在操作数据库,mybatis框架根据接口,通过动态代理的方式生成代理对象,负责数据库的crud操作

1.2.编写StudentMapper接口

image.png
下面的代码是以到续方式上传的

dao层代码

  1. public interface StudentMapper {
  2. //动态根据多个id查询
  3. public abstract List<Student> selectByIds(List<Integer> ids);
  4. //动态sql查询
  5. public abstract List<Student> selectNothing(Student stu);
  6. //根据名字或者年龄查询
  7. publi
  8. c abstract List<Student> selectByNameOrAge(@Param("p1") String name, @Param("p2") Integer age);
  9. //查询全部
  10. public abstract List<Student> selectAll();
  11. //根据id查询
  12. public abstract com.itheima.bean.Student selectById(Integer id);
  13. //新增数据
  14. public abstract Integer insert(Student stu);
  15. //修改数据
  16. public abstract Integer update(Student stu);
  17. //删除数据
  18. public abstract Integer delete(Integer id);
  19. }

service层代码

实现类

  1. public class StudentServiceImpl implements StudentService {
  2. @Override
  3. public List<Student> selectAll() {
  4. //获取sqlSession对象
  5. SqlSession sqlSession = MyBatisUtils.getSqlSession();
  6. //获取持久层接口的实现类的对象
  7. StudentMapper mapper = sqlSession.getMapper(StudentMapper.class);
  8. //调用实现类中方法执行操作
  9. List<Student> list= mapper.selectAll();
  10. //释放资源
  11. sqlSession.close();
  12. //返回结果
  13. return list;
  14. }
  15. @Override
  16. public com.itheima.bean.Student selectById(Integer id) {
  17. //获取sqlSession对象
  18. SqlSession sqlSession = MyBatisUtils.getSqlSession();
  19. //获取持久层接口的实现类的对象
  20. StudentMapper mapper = sqlSession.getMapper(StudentMapper.class);
  21. //调用实现类中方法执行操作
  22. Student student = mapper.selectById(id);
  23. //释放资源
  24. sqlSession.close();
  25. //返回结果
  26. return student;
  27. }
  28. @Override
  29. public Integer insert(Student stu) {
  30. //获取sqlSession对象
  31. SqlSession sqlSession = MyBatisUtils.getSqlSession();
  32. //获取持久层接口的实现类的对象
  33. StudentMapper mapper = sqlSession.getMapper(StudentMapper.class);
  34. //调用实现类中方法执行操作
  35. Integer result = mapper.insert(stu);
  36. //释放资源
  37. sqlSession.close();
  38. //返回结果
  39. return result;
  40. }
  41. @Override
  42. public Integer update(Student stu) {
  43. //获取sqlSession对象
  44. SqlSession sqlSession = MyBatisUtils.getSqlSession();
  45. //获取持久层接口的实现类的对象
  46. StudentMapper mapper = sqlSession.getMapper(StudentMapper.class);
  47. //调用实现类中方法执行操作
  48. Integer result = mapper.update(stu);
  49. //释放资源
  50. sqlSession.close();
  51. //返回结果
  52. return result;
  53. }
  54. @Override
  55. public Integer delete(Integer id) {
  56. //获取sqlSession对象
  57. SqlSession sqlSession = MyBatisUtils.getSqlSession();
  58. //获取持久层接口的实现类的对象
  59. StudentMapper mapper = sqlSession.getMapper(StudentMapper.class);
  60. //调用实现类中方法执行操作
  61. Integer result = mapper.delete(id);
  62. //释放资源
  63. sqlSession.close();
  64. //返回结果
  65. return result;
  66. }
  67. }

接口

  1. public interface StudentService {
  2. //查询全部
  3. public abstract List<com.itheima.bean.Student> selectAll();
  4. //根据id查询
  5. public abstract com.itheima.bean.Student selectById(Integer id);
  6. //新增数据
  7. public abstract Integer insert(Student stu);
  8. //修改数据
  9. public abstract Integer update(Student stu);
  10. //删除数据
  11. public abstract Integer delete(Integer id);
  12. }

controller层代码

  1. public class StudentController {
  2. //创建业务层对象
  3. private StudentService service=new StudentServiceImpl();
  4. //查询全部功能测试
  5. @Test
  6. public void selectAll(){
  7. List<Student> students = service.selectAll();
  8. for (Student stu :students){
  9. System.out.println(stu);
  10. }
  11. }
  12. //根据id查询功能测试
  13. @Test
  14. public void selectById(){
  15. Student stu = service.selectById(3);
  16. System.out.println(stu);
  17. }
  18. //新增功能测试
  19. @Test
  20. public void insert(){
  21. Student stu = new Student(null,"'朝朝'",18);
  22. Integer result = service.insert(stu);
  23. System.out.println(result);
  24. }
  25. //修改功能
  26. @Test
  27. public void update(){
  28. Student stu = new Student(5,"朝朝",26);
  29. Integer result = service.update(stu);
  30. System.out.println(result);
  31. }
  32. //删除功能
  33. @Test
  34. public void delete(){
  35. Integer result = service.delete(6);
  36. System.out.println(result);
  37. }
  38. }

1.3 测试代理方式

  1. public Student selectById(Integer id) {
  2. Student stu = null;
  3. SqlSession sqlSession = null;
  4. InputStream is = null;
  5. try{
  6. //1.加载核心配置文件
  7. is = Resources.getResourceAsStream("MyBatisConfig.xml");
  8. //2.获取SqlSession工厂对象
  9. SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(is);
  10. //3.通过工厂对象获取SqlSession对象
  11. sqlSession = sqlSessionFactory.openSession(true);
  12. //4.获取StudentMapper接口的实现类对象
  13. StudentMapper mapper = sqlSession.getMapper(StudentMapper.class); // StudentMapper mapper = new StudentMapperImpl();
  14. //5.通过实现类对象调用方法,接收结果
  15. stu = mapper.selectById(id);
  16. } catch (Exception e) {
  17. } finally {
  18. //6.释放资源
  19. if(sqlSession != null) {
  20. sqlSession.close();
  21. }
  22. if(is != null) {
  23. try {
  24. is.close();
  25. } catch (IOException e) {
  26. e.printStackTrace();
  27. }
  28. }
  29. }
  30. //7.返回结果
  31. return stu;
  32. }

1.4 源码分析

  • 分析动态代理对象如何生成的?
    通过动态代理开发模式,我们只编写一个接口,不写实现类,我们通过 getMapper() 方法最终获取到 org.apache.ibatis.binding.MapperProxy 代理对象,然后执行功能,而这个代理对象正是 MyBatis 使用了 JDK 的动态代理技术,帮助我们生成了代理实现类对象。从而可以进行相关持久化操作。
  • 分析方法是如何执行的?
    动态代理实现类对象在执行方法的时候最终调用了 mapperMethod.execute() 方法,这个方法中通过 switch 语句根据操作类型来判断是新增、修改、删除、查询操作,最后一步回到了 MyBatis 最原生的 SqlSession 方式来执行增删改查。

1.5 知识小结

接口代理方式可以让我们只编写接口即可,而实现类对象由 MyBatis 生成。

实现规则 :

  1. 映射配置文件中的名称空间必须和 Dao 层接口的全类名相同。
  2. 映射配置文件中的增删改查标签的 id 属性必须和 Dao 层接口的方法名相同。
  3. 映射配置文件中的增删改查标签的 parameterType 属性必须和 Dao 层接口方法的参数相同。
  4. 映射配置文件中的增删改查标签的 resultType 属性必须和 Dao 层接口方法的返回值相同。 
  5. 获取动态代理对象 SqlSession 功能类中的 getMapper() 方法。

二. 动态sql语句

2.1 动态sql语句概述

  1. Mybatis 的映射文件中,前面我们的 SQL 都是比较简单的,有些时候业务逻辑复杂时,我们的 SQL是动态变化的,此时在前面的学习中我们的 SQL 就不能满足要求了。

参考的官方文档,描述如下:

MyBatis - 图27

2.2 动态 SQL 之<if>

我们根据实体类的不同取值,使用不同的 SQL语句来进行查询。比如在 id如果不为空时可以根据id查询,如果username 不同空时还要加入用户名作为条件。这种情况在我们的多条件组合查询中经常会碰到。

如下图:

  1. <select id="findByCondition" parameterType="student" resultType="student">
  2. select * from student
  3. <where>
  4. <if test="id!=0">
  5. and id=#{id}
  6. </if>
  7. <if test="username!=null">
  8. and username=#{username}
  9. </if>
  10. </where>
  11. </select>

当查询条件id和username都存在时,控制台打印的sql语句如下:

  1. //获得MyBatis框架生成的StudentMapper接口的实现类
  2. StudentMapper mapper = sqlSession.getMapper( StudentMapper.class);
  3. Student condition = new Student();
  4. condition.setId(1);
  5. condition.setUsername("lucy");
  6. Student student = mapper.findByCondition(condition);

MyBatis - 图28

当查询条件只有id存在时,控制台打印的sql语句如下:

  1. //获得MyBatis框架生成的UserMapper接口的实现类
  2. StudentMapper mapper = sqlSession.getMapper( StudentMapper.class);
  3. Student condition = new Student();
  4. condition.setId(1);
  5. Student student = mapper.findByCondition(condition);

MyBatis - 图29

总结语法:

  1. <where>:条件标签。如果有动态条件,则使用该标签代替 where 关键字。
  2. <if>:条件判断标签。
  3. <if test=“条件判断”>
  4. 查询条件拼接
  5. </if>

2.3 动态 SQL 之<foreach>

循环执行sql的拼接操作,例如:SELECT * FROM student WHERE id IN (1,2,5)。

  1. <select id="findByIds" parameterType="list" resultType="student">
  2. select * from student
  3. <where>
  4. <foreach collection="array" open="id in(" close=")" item="id" separator=",">
  5. #{id}
  6. </foreach>
  7. </where>
  8. </select>

测试代码片段如下:

  1. //获得MyBatis框架生成的UserMapper接口的实现类
  2. StudentMapper mapper = sqlSession.getMapper(StudentMapper.class);
  3. int[] ids = new int[]{2,5};
  4. List<Student> sList = mapper.findByIds(ids);
  5. System.out.println(sList);

总结语法:

  1. <foreach>:循环遍历标签。适用于多个参数或者的关系。
  2. <foreach collection=“”open=“”close=“”item=“”separator=“”>
  3. 获取参数
  4. </foreach>

属性
collection:参数容器类型, (list-集合, array-数组)。
open:开始的 SQL 语句。
close:结束的 SQL 语句。
item:参数变量名。
separator:分隔符。

2.4 SQL片段抽取

Sql 中可将重复的 sql 提取出来,使用时用 include 引用即可,最终达到 sql 重用的目的

  1. <!--抽取sql片段简化编写-->
  2. <sql id="selectStudent" select * from student</sql>
  3. <select id="findById" parameterType="int" resultType="student">
  4. <include refid="selectStudent"></include> where id=#{id}
  5. </select>
  6. <select id="findByIds" parameterType="list" resultType="student">
  7. <include refid="selectStudent"></include>
  8. <where>
  9. <foreach collection="array" open="id in(" close=")" item="id" separator=",">
  10. #{id}
  11. </foreach>
  12. </where>
  13. </select>

总结语法:

我们可以将一些重复性的 SQL 语句进行抽取,以达到复用的效果。

  1. - <sql>:抽取 SQL 语句标签。
  2. - <include>:引入 SQL 片段标签。
  3. <sql id=“片段唯一标识”>抽取的 SQL 语句</sql> <include refid=“片段唯一标识”/>

2.5 知识小结

MyBatis映射文件配置:

  1. <select>:查询
  2. <insert>:插入
  3. <update>:修改
  4. <delete>:删除
  5. <where>:where条件
  6. <if>:if判断
  7. <foreach>:循环
  8. <sql>:sql片段抽取

三. 分页插件

3.1 分页插件介绍

MyBatis - 图30

  • 分页可以将很多条结果进行分页显示。
  • 如果当前在第一页,则没有上一页。如果当前在最后一页,则没有下一页。
  • 需要明确当前是第几页,这一页中显示多少条结果。
  • MyBatis分页插件总结
    1. 在企业级开发中,分页也是一种常见的技术。而目前使用的 MyBatis 是不带分页功能的,如果想实现分页的 功能,需要我们手动编写 LIMIT 语句。但是不同的数据库实现分页的 SQL 语句也是不同的,所以手写分页 成本较高。这个时候就可以借助分页插件来帮助我们实现分页功能。
    2. PageHelper:第三方分页助手。将复杂的分页操作进行封装,从而让分页功能变得非常简单。

3.2 分页插件的使用

MyBatis可以使用第三方的插件来对功能进行扩展,分页助手PageHelper是将分页的复杂操作进行封装,使用简单的方式即可获得分页的相关数据

开发步骤:

①导入与PageHelper的jar包

②在mybatis核心配置文件中配置PageHelper插件

  1. <!-- 注意:分页助手的插件 配置在通用mapper之前 -->
  2. <plugin interceptor="com.github.pagehelper.PageHelper">
  3. <!-- 指定方言 -->
  4. <property name="dialect" value="mysql"/>
  5. </plugin>

③测试分页数据获取

  1. @Test
  2. public void testPageHelper(){
  3. //设置分页参数
  4. PageHelper.startPage(1,2);
  5. List<User> select = userMapper2.select(null);
  6. for(User user : select){
  7. System.out.println(user);
  8. }
  9. }

3.3 分页插件的参数获取

获得分页相关的其他参数

  1. //其他分页的数据
  2. PageInfo<User> pageInfo = new PageInfo<User>(select);
  3. System.out.println("总条数:"+pageInfo.getTotal());
  4. System.out.println("总页数:"+pageInfo.getPages());
  5. System.out.println("当前页:"+pageInfo.getPageNum());
  6. System.out.println("每页显示长度:"+pageInfo.getPageSize());
  7. System.out.println("是否第一页:"+pageInfo.isIsFirstPage());
  8. System.out.println("是否最后一页:"+pageInfo.isIsLastPage());

3.4 分页插件知识小结

  1. 分页:可以将很多条结果进行分页显示。
  • 分页插件 jar 包: pagehelper-5.1.10.jar jsqlparser-3.1.jar
  • :集成插件标签。
  • 分页助手相关 API
    1.PageHelper:分页助手功能类。
    1. startPage():设置分页参数
    2. PageInfo:分页相关参数功能类。
    3. getTotal():获取总条数
    4. getPages():获取总页数
    5. getPageNum():获取当前页
    6. getPageSize():获取每页显示条数
    7. getPrePage():获取上一页
    8. getNextPage():获取下一页
    9. isIsFirstPage():获取是否是第一页
    10. isIsLastPage():获取是否是最后一页

四.MyBatis的多表操作

4.1 多表模型介绍

我们之前学习的都是基于单表操作的,而实际开发中,随着业务难度的加深,肯定需要多表操作的。

  • 多表模型分类 一对一:在任意一方建立外键,关联对方的主键。
  • 一对多:在多的一方建立外键,关联一的一方的主键。
  • 多对多:借助中间表,中间表至少两个字段,分别关联两张表的主键。

4.2 多表模型一对一操作

  1. 一对一模型: 人和身份证,一个人只有一个身份证
  2. 代码实现
    • 步骤一: sql语句准备 ```sql CREATE TABLE person( id INT PRIMARY KEY AUTO_INCREMENT, NAME VARCHAR(20), age INT ); INSERT INTO person VALUES (NULL,’张三’,23); INSERT INTO person VALUES (NULL,’李四’,24); INSERT INTO person VALUES (NULL,’王五’,25);

CREATE TABLE card( id INT PRIMARY KEY AUTO_INCREMENT, number VARCHAR(30), pid INT, CONSTRAINT cp_fk FOREIGN KEY (pid) REFERENCES person(id) ); INSERT INTO card VALUES (NULL,’12345’,1); INSERT INTO card VALUES (NULL,’23456’,2); INSERT INTO card VALUES (NULL,’34567’,3);

  1. - 步骤二:配置文件
  2. ```xml
  3. <?xml version="1.0" encoding="UTF-8" ?>
  4. <!DOCTYPE mapper
  5. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  6. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  7. <mapper namespace="com.itheima.table01.OneToOneMapper">
  8. <!--配置字段和实体对象属性的映射关系-->
  9. <resultMap id="oneToOne" type="card">
  10. <id column="cid" property="id" />
  11. <result column="number" property="number" />
  12. <!--
  13. association:配置被包含对象的映射关系
  14. property:被包含对象的变量名
  15. javaType:被包含对象的数据类型
  16. -->
  17. <association property="p" javaType="person">
  18. <id column="pid" property="id" />
  19. <result column="name" property="name" />
  20. <result column="age" property="age" />
  21. </association>
  22. </resultMap>
  23. <select id="selectAll" resultMap="oneToOne">
  24. SELECT c.id cid,number,pid,NAME,age FROM card c,person p WHERE c.pid=p.id
  25. </select>
  26. </mapper>
  • 步骤三:测试类

    1. @Test
    2. public void selectAll() throws Exception{
    3. //1.加载核心配置文件
    4. InputStream is = Resources.getResourceAsStream("MyBatisConfig.xml");
    5. //2.获取SqlSession工厂对象
    6. SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(is);
    7. //3.通过工厂对象获取SqlSession对象
    8. SqlSession sqlSession = sqlSessionFactory.openSession(true);
    9. //4.获取OneToOneMapper接口的实现类对象
    10. OneToOneMapper mapper = sqlSession.getMapper(OneToOneMapper.class);
    11. //5.调用实现类的方法,接收结果
    12. List<Card> list = mapper.selectAll();
    13. //6.处理结果
    14. for (Card c : list) {
    15. System.out.println(c);
    16. }
    17. //7.释放资源
    18. sqlSession.close();
    19. is.close();
    20. }

3.一对一配置总结:

  1. <resultMap>:配置字段和对象属性的映射关系标签。
  2. id 属性:唯一标识
  3. type 属性:实体对象类型
  4. <id>:配置主键映射关系标签。
  5. <result>:配置非主键映射关系标签。
  6. column 属性:表中字段名称
  7. property 属性: 实体对象变量名称
  8. <association>:配置被包含对象的映射关系标签。
  9. property 属性:被包含对象的变量名
  10. javaType 属性:被包含对象的数据类型

4.3 多表模型一对多操作

  1. 一对多模型: 一对多模型:班级和学生,一个班级可以有多个学生。
  2. 代码实现
    • 步骤一: sql语句准备 ```sql CREATE TABLE classes( id INT PRIMARY KEY AUTO_INCREMENT, NAME VARCHAR(20) ); INSERT INTO classes VALUES (NULL,’黑马一班’); INSERT INTO classes VALUES (NULL,’黑马二班’);

CREATE TABLE student( id INT PRIMARY KEY AUTO_INCREMENT, NAME VARCHAR(30), age INT, cid INT, CONSTRAINT cs_fk FOREIGN KEY (cid) REFERENCES classes(id) ); INSERT INTO student VALUES (NULL,’张三’,23,1); INSERT INTO student VALUES (NULL,’李四’,24,1); INSERT INTO student VALUES (NULL,’王五’,25,2); INSERT INTO student VALUES (NULL,’赵六’,26,2);

  1. - 步骤二:配置文件
  2. ```xml
  3. <mapper namespace="com.itheima.table02.OneToManyMapper">
  4. <resultMap id="oneToMany" type="classes">
  5. <id column="cid" property="id"/>
  6. <result column="cname" property="name"/>
  7. <!--
  8. collection:配置被包含的集合对象映射关系
  9. property:被包含对象的变量名
  10. ofType:被包含对象的实际数据类型
  11. -->
  12. <collection property="students" ofType="student">
  13. <id column="sid" property="id"/>
  14. <result column="sname" property="name"/>
  15. <result column="sage" property="age"/>
  16. </collection>
  17. </resultMap>
  18. <select id="selectAll" resultMap="oneToMany">
  19. SELECT c.id cid,c.name cname,s.id sid,s.name sname,s.age sage FROM classes c,student s WHERE c.id=s.cid
  20. </select>
  21. </mapper>
  • 步骤三:测试类

    1. @Test
    2. public void selectAll() throws Exception{
    3. //1.加载核心配置文件
    4. InputStream is = Resources.getResourceAsStream("MyBatisConfig.xml");
    5. //2.获取SqlSession工厂对象
    6. SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(is);
    7. //3.通过工厂对象获取SqlSession对象
    8. SqlSession sqlSession = sqlSessionFactory.openSession(true);
    9. //4.获取OneToManyMapper接口的实现类对象
    10. OneToManyMapper mapper = sqlSession.getMapper(OneToManyMapper.class);
    11. //5.调用实现类的方法,接收结果
    12. List<Classes> classes = mapper.selectAll();
    13. //6.处理结果
    14. for (Classes cls : classes) {
    15. System.out.println(cls.getId() + "," + cls.getName());
    16. List<Student> students = cls.getStudents();
    17. for (Student student : students) {
    18. System.out.println("\t" + student);
    19. }
    20. }
    21. //7.释放资源
    22. sqlSession.close();
    23. is.close();
    24. }

3.一对多配置文件总结:

  1. <resultMap>:配置字段和对象属性的映射关系标签。
  2. id 属性:唯一标识
  3. type 属性:实体对象类型
  4. <id>:配置主键映射关系标签。
  5. <result>:配置非主键映射关系标签。
  6. column 属性:表中字段名称
  7. property 属性: 实体对象变量名称
  8. <collection>:配置被包含集合对象的映射关系标签。
  9. property 属性:被包含集合对象的变量名
  10. ofType 属性:集合中保存的对象数据类型

4.4 多表模型多对多操作

  1. 多对多模型:学生和课程,一个学生可以选择多门课程、一个课程也可以被多个学生所选择。
  2. 代码实现
    • 步骤一: sql语句准备 ```sql CREATE TABLE course( id INT PRIMARY KEY AUTO_INCREMENT, NAME VARCHAR(20) ); INSERT INTO course VALUES (NULL,’语文’); INSERT INTO course VALUES (NULL,’数学’);

CREATE TABLE stu_cr( id INT PRIMARY KEY AUTO_INCREMENT, sid INT, cid INT, CONSTRAINT sc_fk1 FOREIGN KEY (sid) REFERENCES student(id), CONSTRAINT sc_fk2 FOREIGN KEY (cid) REFERENCES course(id) ); INSERT INTO stu_cr VALUES (NULL,1,1); INSERT INTO stu_cr VALUES (NULL,1,2); INSERT INTO stu_cr VALUES (NULL,2,1); INSERT INTO stu_cr VALUES (NULL,2,2);

  1. - 步骤二:配置文件
  2. ```xml
  3. <?xml version="1.0" encoding="UTF-8" ?>
  4. <!DOCTYPE mapper
  5. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  6. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  7. <mapper namespace="com.itheima.table03.ManyToManyMapper">
  8. <resultMap id="manyToMany" type="student">
  9. <id column="sid" property="id"/>
  10. <result column="sname" property="name"/>
  11. <result column="sage" property="age"/>
  12. <collection property="courses" ofType="course">
  13. <id column="cid" property="id"/>
  14. <result column="cname" property="name"/>
  15. </collection>
  16. </resultMap>
  17. <select id="selectAll" resultMap="manyToMany">
  18. SELECT sc.sid,s.name sname,s.age sage,sc.cid,c.name cname FROM student s,course c,stu_cr sc WHERE sc.sid=s.id AND sc.cid=c.id
  19. </select>
  20. </mapper>
  • 步骤三:测试类

    1. @Test
    2. public void selectAll() throws Exception{
    3. //1.加载核心配置文件
    4. InputStream is = Resources.getResourceAsStream("MyBatisConfig.xml");
    5. //2.获取SqlSession工厂对象
    6. SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(is);
    7. //3.通过工厂对象获取SqlSession对象
    8. SqlSession sqlSession = sqlSessionFactory.openSession(true);
    9. //4.获取ManyToManyMapper接口的实现类对象
    10. ManyToManyMapper mapper = sqlSession.getMapper(ManyToManyMapper.class);
    11. //5.调用实现类的方法,接收结果
    12. List<Student> students = mapper.selectAll();
    13. //6.处理结果
    14. for (Student student : students) {
    15. System.out.println(student.getId() + "," + student.getName() + "," + student.getAge());
    16. List<Course> courses = student.getCourses();
    17. for (Course cours : courses) {
    18. System.out.println("\t" + cours);
    19. }
    20. }
    21. //7.释放资源
    22. sqlSession.close();
    23. is.close();
    24. }

3.多对多配置文件总结:

  1. <resultMap>:配置字段和对象属性的映射关系标签。
  2. id 属性:唯一标识
  3. type 属性:实体对象类型
  4. <id>:配置主键映射关系标签。
  5. <result>:配置非主键映射关系标签。
  6. column 属性:表中字段名称
  7. property 属性: 实体对象变量名称
  8. <collection>:配置被包含集合对象的映射关系标签。
  9. property 属性:被包含集合对象的变量名
  10. ofType 属性:集合中保存的对象数据类型

4.5 多表模型操作总结

  1. <resultMap>:配置字段和对象属性的映射关系标签。
  2. id 属性:唯一标识
  3. type 属性:实体对象类型
  4. <id>:配置主键映射关系标签。
  5. <result>:配置非主键映射关系标签。
  6. column 属性:表中字段名称
  7. property 属性: 实体对象变量名称
  8. <association>:配置被包含对象的映射关系标签。
  9. property 属性:被包含对象的变量名
  10. javaType 属性:被包含对象的数据类型
  11. <collection>:配置被包含集合对象的映射关系标签。
  12. property 属性:被包含集合对象的变量名
  13. ofType 属性:集合中保存的对象数据类型