mybatis-plus与mybatis共存的实现

接手了一个开发任务,在一个springboot+mybatis+nacos的框架上增加功能模块。但笔者更喜欢mybatisplus的高效率和快捷,用mapper就能实现绝大多数CURD功能(批量插入,批量删除等需要service层的支持),避免配置xml的繁琐,故决定整合mybatisplus与mybatis。

经过一番挑战后,总结如下:

一、在pom文件中添加mybatis-plus-boot-starter

情况1:父pom中使用的是< dependencyManagement >…< /dependencyManagement >方式

父pom配置:


   
     
		
		
        
            com.baomidou
            mybatis-plus-boot-starter
            3.4.3
        
     
  

-子pom配置:



    com.baomidou
    mybatis-plus-boot-starter

情况2 :父pom中使用的是 < dependencies >…< /dependencies > 方式

父pom配置:

   


    com.baomidou
    mybatis-plus-boot-starter
    3.4.3


子pom配置:

子pom会自动使用父pom中的jar包,子目录无需配置。

二、配置yml文件

将原来的配置mybatis改为mybatis-plus,如图:

原来:

mybatis-plus与mybatis共存的实现_第1张图片

新:

mybatis-plus与mybatis共存的实现_第2张图片

注意:
1 mybatis单一环境,yml中配置为mybatis。
2 mybatisplus单一环境,yml中配置为mybatis-plus或mybatis都可以。

到此这篇关于mybatis-plus与mybatis共存的实现的文章就介绍到这了,更多相关mybatis-plus与mybatis共存内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

你可能感兴趣的:(mybatis-plus与mybatis共存的实现)