Spring boot 和 mybatis-plus基础整合

作者: 后端技术学习分享 | 来源:发表于2018-10-22 18:21 被阅读7次

    环境

    • springboot版本 :1.5.15.RELEASE
    • Mybatis-plus版本:2.2.0

    整合步骤

    1. POM.xml(部分)
    <!-- Mybatis Plus -->
    <dependency>
      <groupId>com.baomidou</groupId>
      <artifactId>mybatis-plus-boot-starter</artifactId>
      <version>2.2.0</version>
    </dependency>
    
    <parent>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-parent</artifactId>
      <version>1.5.15.RELEASE</version>
      <relativePath/> <!-- lookup parent from repository -->
    </parent>
    
    1. 编写application.yml配置文件
      注意,具体配置参考:Mybatis-plus文档
      application.yml部分代码:
    mybatis-plus:
      mapper-locations: classpath:/mapper/*Mapper.xml
      typeAliasesPackage: com.spz.pi.web.platform.entity
      global-config:
        id-type: 2
        field-strategy: 0
        db-column-underline: true
        refresh-mapper: true #是否动态刷新mapper,生产环境不建议使用
      configuration:
        map-underscore-to-camel-case: true
        cache-enabled: true
      check-config-location: true
    
    1. 编写Java config类

    此类是用于配置mapper类路径,暂时不清楚如何在application中配置mapper类路径。
    如果全部配置都在Java config中编写,则会有一个问题:配置mapper的xml文件路径时,Java config方式只能一个文件一个文件的路径写,无法直接写*.xml导入多个文件。

    • MybatisPlusConfig.java*代码:
    package com.spz.pi.web.platform.config;
    
    import com.baomidou.mybatisplus.entity.GlobalConfiguration;
    import com.baomidou.mybatisplus.spring.MybatisSqlSessionFactoryBean;
    import com.baomidou.mybatisplus.spring.boot.starter.MybatisPlusAutoConfiguration;
    import org.mybatis.spring.annotation.MapperScan;
    import org.springframework.context.annotation.Configuration;
    import org.springframework.core.io.ClassPathResource;
    import org.springframework.core.io.Resource;
    import org.springframework.transaction.annotation.EnableTransactionManagement;
    
    @EnableTransactionManagement
    @Configuration
    @MapperScan("com.spz.pi.web.platform.mapper*")
    public class MybatisPlusConfig {
    }
    

    相关文章

      网友评论

        本文标题:Spring boot 和 mybatis-plus基础整合

        本文链接:https://www.haomeiwen.com/subject/gvagzftx.html