1.背景 老项目是mybatis的,但是新项目想使用mybatis-plus, 故需要升级 2.实现步骤 2.1、删除所有的mybatis包,一定要去除所有的mybatis包。包括其他依赖内的依赖 2.2、导入mybatis-plus包 <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.5.1</v...
mybatis-plus.global-config.db-config.field-strategy=not_empty mybatis-plus.configuration.map-underscore-to-camel-case=true 2.4、或者手动注入mybatis配置(重要) @Configuration @MapperScan(basePackages= {"com.XXX.mapper"}) @EnableTransactionManagementpublicclassMybatisPlusConfig {/*** 性能分析拦截器,不...