依赖

  正常情况下,在原有依赖基础上增加的 mapper-spring。

  1. <!-- https://mvnrepository.com/artifact/tk.mybatis/mapper-spring -->
  2. <dependency>
  3. <groupId>tk.mybatis</groupId>
  4. <artifactId>mapper-spring</artifactId>
  5. <version>1.0.5</version>
  6. </dependency>

  如果想使用其他版本的依赖文件,可以在Maven仓库上搜索“tk.mybatis”。

配置 

  MapperScannerConfigurer xml

  1. <bean class="tk.mybatis.spring.mapper.MapperScannerConfigurer">
  2. <property name="basePackage" value="tk.mybatis.mapper.mapper"/>
  3. <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/>
  4. <property name="properties">
  5. <value>
  6. mappers=tk.mybatis.mapper.common.Mapper
  7. </value>
  8. </property>
  9. </bean>

  @MapperScan 注解

  Spring Boot 环境中使用 application.properties] 配置文件

  在 Spring Boot 中使用 Mapper 时,如果选择使用注解方式,可以不引入 mapper-starter 依赖。

  特别提醒:Spring Boot 中常见的是配置文件方式,使用环境变量或者运行时的参数都可以配置,这些配置都可以对通用 Mapper 生效。

  在 propertie 配置中:

  1. mapper.mappers=tk.mybatis.mapper.common.Mapper,tk.mybatis.mapper.common.Mapper2
  2. mapper.not-empty=true

  tk.mybatis.mapper.session.Configuration 配置

  使用要求:MyBatis (3.4.0+) 和 mybatis-spring (1.3.0+)

  注意该类的包名,这个类继承了 MyBatis 的 Configuration 类,并且重写了 addMappedStatement 方法,如下:

  1. @Override
  2. public void addMappedStatement(MappedStatement ms) {
  3. try {
  4. super.addMappedStatement(ms);
  5. //在这里处理时,更能保证所有的方法都会被正确处理
  6. if (this.mapperHelper != null) {
  7. this.mapperHelper.processMappedStatement(ms);
  8. }
  9. } catch (IllegalArgumentException e) {
  10. //这里的异常是导致 Spring 启动死循环的关键位置,为了避免后续会吞异常,这里直接输出
  11. e.printStackTrace();
  12. throw new RuntimeException(e);
  13. }
  14. }

  tk.mybatis.mapper.session.Configuration 提供了 3 种配置通用 Mapper 的方式,如下所示:

  1. /**
  2. * 直接注入 mapperHelper
  3. *
  4. * @param mapperHelper
  5. */
  6. public void setMapperHelper(MapperHelper mapperHelper) {
  7. this.mapperHelper = mapperHelper;
  8. }
  9.  
  10. /**
  11. * 使用属性方式配置
  12. *
  13. * @param properties
  14. */
  15. public void setMapperProperties(Properties properties) {
  16. if (this.mapperHelper == null) {
  17. this.mapperHelper = new MapperHelper();
  18. }
  19. this.mapperHelper.setProperties(properties);
  20. }
  21.  
  22. /**
  23. * 使用 Config 配置
  24. *
  25. * @param config
  26. */
  27. public void setConfig(Config config) {
  28. if (mapperHelper == null) {
  29. mapperHelper = new MapperHelper();
  30. }
  31. mapperHelper.setConfig(config);
  32. }

  这里直接配置一个 tk 中提供的 Configuration,然后注入到 SqlSessionFactoryBean 中。

  使用 tk.mybatis.mapper.session.Configuration 和 Spring 集成

  1. @Bean
  2. public SqlSessionFactory sqlSessionFactory() throws Exception {
  3. SqlSessionFactoryBean sessionFactory = new SqlSessionFactoryBean();
  4. sessionFactory.setDataSource(dataSource());
  5. //创建 Configuration,设置通用 Mapper 配置
  6. tk.mybatis.mapper.session.Configuration configuration = new tk.mybatis.mapper.session.Configuration();
  7. //有 3 种配置方式
  8. configuration.setMapperHelper(new MapperHelper());
  9. sessionFactory.setConfiguration(configuration);
  10.  
  11. return sessionFactory.getObject();
  12. }

代码演示  

  创建一个超类接口,继承通用mapper内部的所有方法,然后就可以直接调用了。

  1. public interface BaseMapper<T> extends InsertSelectiveMapper<T>, UpdateByExampleSelectiveMapper<T>, UpdateByPrimaryKeySelectiveMapper<T>,
  2. SelectOneMapper<T>, SelectByPrimaryKeyMapper<T>, SelectMapper<T>, SelectByExampleMapper<T>, SelectByExampleRowBoundsMapper<T>,
  3. SelectCountByExampleMapper<T> {}

  下面介绍一下通用Mapper的内置方法

  countByExample --- 根据条件查询数量 

  1. int countByExample(UserExample example);
  2. //完整案例
  3. UserExample example=new UserExample();
  4. Criteria criteria = example.createCriteria();
  5. criteria.andAgeEqualTo(23);
  6. int count=userDAO.countByExample(example);
  7. //相当于:select count(*) from user where age=23;

  deleteByExample  --- 根据条件删除多条

  1. int deleteByExample(AccountExample example);
  2.  
  3. //完整的案例
  4.  
  5. UserExample example = new UserExample();
  6.  
  7. Criteria criteria = example.createCriteria();
  8.  
  9. criteria.andUsernameEqualTo("joe");
  10.  
  11. userDAO.deleteByExample(example);
  12.  
  13. //相当于:delete from user where username='joe'

  deleteByPrimaryKey ---根据主键删除

  1. int deleteByPrimaryKey(Integer id);
  2.  
  3. //完整案例
  4. userDAO.deleteByPrimaryKey(101);
  5.  
  6. //相当于:delete from user where id=101

  insertSelective --- 插入数据

  1. int insertSelective(Account record);
  2. //完整的案例
  3. User user = new User();
  4. user.setUsername("test");
  5. user.setPassword("123456")
  6. user.setEmail("674531003@qq.com");
  7. userDAO.insertSelective(user);
  8. //相当于:insert into user(username,password,email) values('test','123456','674531003@qq.com');

  selectByExample --- 根据条件查询数据

  1. List<Account> selectByExample(AccountExample example);
  2. //完整的案例
  3. UserExample example = new UserExample();
  4. Criteria criteria = example.createCriteria();
  5. criteria.andUsernameEqualTo("joe");
  6. criteria.andUsernameIsNull();
  7. example.setOrderByClause("username asc,email desc");
  8. List<?> list = userDAO.selectByExample(example);
  9. //相当于:select * from user where username = 'joe' and username is null order by username asc,email desc
  10. //注:在myBatis 生成的文件UserExample.java中包含一个static 的内部类 Criteria ,在Criteria中有很多方法,主要是定义SQL 语句where后的查询条件。

  selectByPrimaryKey --- 根据主键查询数据

  1. Account selectByPrimaryKey(Integer id);
  2. //相当于select * from user where id = id

  updateByExampleSelective --- 按条件更新值不为null的字段

  1. int updateByExampleSelective(@Param("record") Account record, @Param("example") AccountExample example);
  2.  //完整的案列
  3. UserExample example = new UserExample();
  4. Criteria criteria = example.createCriteria();
  5. criteria.andUsernameEqualTo("joe");
  6. User user = new User();
  7. user.setPassword("123"); userDAO.updateByPrimaryKeySelective(user,example);
  8. //相当于:update user set password='123' where username='joe'

  updateByPrimaryKeySelective --- 根据主键更新

  1. int updateByPrimaryKeySelective(Account record);
  2.  //完整的案例 
  3. User user = new User();
  4. user.setId(101);
  5. user.setPassword("joe");
  6. userDAO.updateByPrimaryKeySelective(user);
  7. //相当于:update user set password='joe' where id=101

最后补一张从网上盗的关于Example的图

 

Mybatis 通用 Mapper 和 Spring 集成的更多相关文章

  1. spring boot集成MyBatis 通用Mapper 使用总结

    spring boot集成MyBatis 通用Mapper 使用总结 2019年 参考资料: Spring boot集成 MyBatis 通用Mapper SpringBoot框架之通用mapper插 ...

  2. Spring boot集成 MyBatis 通用Mapper

    配置 POM文件 <parent> <groupId>org.springframework.boot</groupId> <artifactId>sp ...

  3. SpringBoot 3.SpringBoot 整合 MyBatis 逆向工程以及 MyBatis 通用 Mapper

    一.添加所需依赖,当前完整的pom文件如下: <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi=&qu ...

  4. springboot学习笔记:11.springboot+shiro+mysql+mybatis(通用mapper)+freemarker+ztree+layui实现通用的java后台管理系统(权限管理+用户管理+菜单管理)

    一.前言 经过前10篇文章,我们已经可以快速搭建一个springboot的web项目: 今天,我们在上一节基础上继续集成shiro框架,实现一个可以通用的后台管理系统:包括用户管理,角色管理,菜单管理 ...

  5. 值得收藏的Mybatis通用Mapper使用大全。

    引言 由于小编的记性不太好,每次在写代码的时候总是把通用mapper的方法记错,所以今天把通用mapper的常用方法做一下总结,方便以后直接查看.好了,不废话啦. 引包 <!-- 通用Mappe ...

  6. (一 、上)搭建简单的SpringBoot + java + maven + mysql + Mybatis+通用Mapper 《附项目源码》

    最近公司一直使用 springBoot 作为后端项目框架, 也负责搭建了几个新项目的后端框架.在使用了一段时间springBoot 后,感觉写代码 比spring 更加简洁了(是非常简洁),整合工具也 ...

  7. springboot学习笔记:8. springboot+druid+mysql+mybatis+通用mapper+pagehelper+mybatis-generator+freemarker+layui

    前言: 开发环境:IDEA+jdk1.8+windows10 目标:使用springboot整合druid数据源+mysql+mybatis+通用mapper插件+pagehelper插件+mybat ...

  8. springboot学习笔记:9.springboot+mybatis+通用mapper+多数据源

    本文承接上一篇文章:springboot学习笔记:8. springboot+druid+mysql+mybatis+通用mapper+pagehelper+mybatis-generator+fre ...

  9. Mybatis通用Mapper介绍和使用

    Mybatis通用Mapper介绍与使用 前言 使用Mybatis的开发者,大多数都会遇到一个问题,就是要写大量的SQL在xml文件中,除了特殊的业务逻辑SQL之外,还有大量结构类似的增删改查SQL. ...

随机推荐

  1. BZOJ3864: Hero meet devil(dp套dp)

    Time Limit: 8 Sec  Memory Limit: 128 MBSubmit: 397  Solved: 206[Submit][Status][Discuss] Description ...

  2. java.io.FileNotFoundException:my-release-key.keyStore拒绝访问

    安卓生成APK的时候,生成密钥的时候报java.io.FileNotFoundException:my-release-key.keyStore拒绝访问的错误 这是因为权限问题:你的jdk目录在c盘, ...

  3. 强化学习Q-Learning算法详解

    python风控评分卡建模和风控常识(博客主亲自录制视频教程) https://study.163.com/course/introduction.htm?courseId=1005214003&am ...

  4. Entity Framework入门教程(3)---EF中的上下文简介

    1.DbContext(上下文类) 在DbFirst模式中,我们添加一个EDM(Entity Data Model)后会自动生成一个.edmx文件,这个文件中包含一个继承DbContext类的上下文实 ...

  5. Quartz C#使用

    参考:https://www.cnblogs.com/lazyInsects/p/8075487.htmlQuartz是一款比较好用的定时任务执行工具类,虽然我们平时也可以自己写代码实现定时执行,但是 ...

  6. Tupper自我指涉公式生成器

  7. python:函数和循环判断

    输出显示 先说一下最基础的输出: print('hello world') 唯一值得提到是字符串的format函数. format函数代替了C中的%s. print('{0} say:{0} {1}. ...

  8. 第六章 接口,lamda表达式与内部类

    接口 接口可以包含常量, 且不需要publish static final修饰, 接口的域会自动添加该修饰符. Java建议不要写多余的代码,因此省略修饰符更简洁. 全部都是常量的接口背离了接口的初衷 ...

  9. phpstudy 安装Apache SSL证书实现https连接

    Windows phpstudy安装ssl证书教程. 工具/原料   phpstudy 集成环境 申请的SSL证书 方法/步骤     首先申请免费的ssl证书,很多地方都可以申请.我是在腾讯云!如图 ...

  10. [Kubernetes]如何让集群为我们工作?

    前一段时间倒腾k8s的时候,写了一系列的博客,有很多人不理解那样做的意义是什么,为什么要那样做,这篇文章就尝试解释一下,在实际环境中,是如何让集群为我们工作的. 因为只研究了一个月左右的时间,认识难免 ...