1 Star 0 Fork 0

wudongqiang / MyBatis-Spring-Boot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
README.md 2.05 KB
一键复制 编辑 原始数据 按行查看 历史
abel533 提交于 2015-12-24 22:20 . 完善,调整。

#Spring Boot集成MyBatis的基础项目

#MyBatis3.3.0

#Spring Boot 1.3.0.RELEASE

项目使用Spring Boot 1.3.0.RELEASE + Mybatis3.3.0

项目集成了Mybatis分页插件和通用Mapper插件

项目使用的mysql数据库,根据需要可以切换为其他数据库

##说明

虽然MyBatis官方提供了mybatis-spring-boot-starter,但是该配置的可以控制的地方太少,因此短时间不会直接使用该starter

在集成MyBatis配置MapperScannerConfigurer需要特别注意,将该类单独放在一个配置文件中,例如本项目中的MyBatisMapperScannerConfig类:

@Configuration
//注意,由于MapperScannerConfigurer执行的比较早,所以必须有下面的注解
//MyBatisConfig.class是一个包含了SqlSessionFactory配置的类
@AutoConfigureAfter(MyBatisConfig.class)
public class MyBatisMapperScannerConfig {

    @Bean
    public MapperScannerConfigurer mapperScannerConfigurer() {
        MapperScannerConfigurer mapperScannerConfigurer = new MapperScannerConfigurer();
        mapperScannerConfigurer.setSqlSessionFactoryBeanName("sqlSessionFactory");
        mapperScannerConfigurer.setBasePackage("tk.mybatis.springboot.mapper");
        Properties properties = new Properties();
        properties.setProperty("mappers", "tk.mybatis.springboot.util.MyMapper");
        properties.setProperty("notEmpty", "false");
        properties.setProperty("IDENTITY", "MYSQL");
        //这里使用的通用Mapper的MapperScannerConfigurer,所有有下面这个方法
        mapperScannerConfigurer.setProperties(properties);
        return mapperScannerConfigurer;
    }

}

##SSM集成的基础项目

###https://github.com/abel533/Mybatis-Spring

##MyBatis工具

###http://www.mybatis.tk

##推荐使用Mybatis通用Mapper3

###https://github.com/abel533/Mapper

##推荐使用Mybatis分页插件PageHelper

###https://github.com/pagehelper/Mybatis-PageHelper

##作者信息

Java
1
https://gitee.com/wudongqiang/MyBatis-Spring-Boot.git
git@gitee.com:wudongqiang/MyBatis-Spring-Boot.git
wudongqiang
MyBatis-Spring-Boot
MyBatis-Spring-Boot
master

搜索帮助