博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring Boot 集成MyBatis
阅读量:6312 次
发布时间:2019-06-22

本文共 4176 字,大约阅读时间需要 13 分钟。

在集成MyBatis前,我们先配置一个druid数据源。

Spring Boot 系列

Spring Boot 集成druid

druid有很多个配置选项,使用Spring Boot 的配置文件可以方便的配置druid

application.yml配置文件中写上:

spring:    datasource:        name: test        url: jdbc:mysql://192.168.16.137:3306/test username: root password: # 使用druid数据源 type: com.alibaba.druid.pool.DruidDataSource driver-class-name: com.mysql.jdbc.Driver filters: stat maxActive: 20 initialSize: 1 maxWait: 60000 minIdle: 1 timeBetweenEvictionRunsMillis: 60000 minEvictableIdleTimeMillis: 300000 validationQuery: select 'x' testWhileIdle: true testOnBorrow: false testOnReturn: false poolPreparedStatements: true maxOpenPreparedStatements: 20

 

这里通过type: com.alibaba.druid.pool.DruidDataSource配置即可!

Spring Boot 集成MyBatis

Spring Boot 集成MyBatis有两种方式,一种简单的方式就是使用MyBatis官方提供的:

另外一种方式就是仍然用类似mybatis-spring的配置方式,这种方式需要自己写一些代码,但是可以很方便的控制MyBatis的各项配置。

一、方式

pom.xml中添加依赖:

org.mybatis.spring.boot
mybatis-spring-boot-starter
1.0.0
  • 1
  • 2
  • 3
  • 4
  • 5

mybatis-spring-boot-starter依赖树如下: 

依赖树

其中mybatis使用的3.3.0版本,可以通过: 

<mybatis.version>3.3.0</mybatis.version>属性修改默认版本。 
mybatis-spring使用版本1.2.3,可以通过: 
<mybatis-spring.version>1.2.3</mybatis-spring.version>修改默认版本。

application.yml中增加配置:

mybatis:   mapperLocations: classpath:mapper/*.xml  typeAliasesPackage: tk.mapper.model
  • 1
  • 2
  • 3

除了上面常见的两项配置,还有:

  • mybatis.config:mybatis-config.xml配置文件的路径
  • mybatis.typeHandlersPackage:扫描typeHandlers的包
  • mybatis.checkConfigLocation:检查配置文件是否存在
  • mybatis.executorType:设置执行模式(SIMPLE, REUSE, BATCH),默认为SIMPLE

二、mybatis-spring方式

这种方式和平常的用法比较接近。需要添加mybatis依赖和mybatis-spring依赖。

然后创建一个MyBatisConfig配置类:

/** * MyBatis基础配置 * * @author liuzh * @since 2015-12-19 10:11 */@Configuration@EnableTransactionManagement public class MyBatisConfig implements TransactionManagementConfigurer { @Autowired DataSource dataSource; @Bean(name = "sqlSessionFactory") public SqlSessionFactory sqlSessionFactoryBean() { SqlSessionFactoryBean bean = new SqlSessionFactoryBean(); bean.setDataSource(dataSource); bean.setTypeAliasesPackage("tk.mybatis.springboot.model"); //分页插件 PageHelper pageHelper = new PageHelper(); Properties properties = new Properties(); properties.setProperty("reasonable", "true"); properties.setProperty("supportMethodsArguments", "true"); properties.setProperty("returnPageInfo", "check"); properties.setProperty("params", "count=countSql"); pageHelper.setProperties(properties); //添加插件 bean.setPlugins(new Interceptor[]{pageHelper}); //添加XML目录 ResourcePatternResolver resolver = new PathMatchingResourcePatternResolver(); try { bean.setMapperLocations(resolver.getResources("classpath:mapper/*.xml")); return bean.getObject(); } catch (Exception e) { e.printStackTrace(); throw new RuntimeException(e); } } @Bean public SqlSessionTemplate sqlSessionTemplate(SqlSessionFactory sqlSessionFactory) { return new SqlSessionTemplate(sqlSessionFactory); } @Bean @Override public PlatformTransactionManager annotationDrivenTransactionManager() { return new DataSourceTransactionManager(dataSource); } }

 

上面代码创建了一个SqlSessionFactory和一个SqlSessionTemplate,为了支持注解事务,增加了@EnableTransactionManagement注解,并且反回了一个PlatformTransactionManagerBean。

另外应该注意到这个配置中没有MapperScannerConfigurer,如果我们想要扫描MyBatis的Mapper接口,我们就需要配置这个类,这个配置我们需要单独放到一个类中。

/** * MyBatis扫描接口 *  * @author liuzh * @since 2015-12-19 14:46 */@Configuration//TODO 注意,由于MapperScannerConfigurer执行的比较早,所以必须有下面的注解 @AutoConfigureAfter(MyBatisConfig.class) public class MyBatisMapperScannerConfig { @Bean public MapperScannerConfigurer mapperScannerConfigurer() { MapperScannerConfigurer mapperScannerConfigurer = new MapperScannerConfigurer(); mapperScannerConfigurer.setSqlSessionFactoryBeanName("sqlSessionFactory"); mapperScannerConfigurer.setBasePackage("tk.mybatis.springboot.mapper"); return mapperScannerConfigurer; } }

 

这个配置一定要注意@AutoConfigureAfter(MyBatisConfig.class),必须有这个配置,否则会有异常。原因就是这个类执行的比较早,由于sqlSessionFactory还不存在,后续执行出错。

做好上面配置以后就可以使用MyBatis了。

关于分页插件和通用Mapper集成

分页插件作为插件的例子在上面代码中有。

通用Mapper配置实际就是配置MapperScannerConfigurer的时候使用tk.mybatis.spring.mapper.MapperScannerConfigurer即可,配置属性使用Properties

Spring Boot集成MyBatis的基础项目

我上传到github一个采用第二种方式的集成项目,并且集成了分页插件和通用Mapper,项目包含了简单的配置和操作,仅作为参考。

项目地址:

分页插件和通用Mapper的相关信息可以通过上面地址找到。

你可能感兴趣的文章
[日推荐]『旅行云清单』列好清单,准备出发!
查看>>
微信小程序--蓝牙连接开发总结
查看>>
XMLHttpRequest Level 2 轻松Ajax上传
查看>>
ZTREE
查看>>
java 访问子域名设置
查看>>
Spring整合Quartz(JobDetailBean方式)
查看>>
全国DNS
查看>>
linux 挂载NTFS移动硬盘
查看>>
gcc 编译问题
查看>>
Hadoop学习--int类型的序列化和反序列化--day07
查看>>
爬取高德地图poi数据
查看>>
RouterOS 安装及配置(功能真的很强大)
查看>>
myBatis3单表的增删改查(一)
查看>>
技术人员,你拿什么来拯救你的生活----一个牛人的故事
查看>>
ADSL宽带拨号的常见故障解决方案
查看>>
虚拟化技术资料总结
查看>>
Step 1:系统环境
查看>>
Android 完美退出 App (Exit)
查看>>
中天账户管理系统 v1.15 (多用户版)C++源代码 VisualStudio2010
查看>>
Play Framework - 环境搭建(2.2)
查看>>