1、导入依赖
<dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.4.1</version> </dependency>
2、在yml中配置注释mybatis配置和在framwork中注释mybatisconfig,并添加配置
mybatis-plus: #扫描mapper文件的位置 mapper-locations: classpath*:mapper/**/*Mapper.xml #实体类所在的包路径可以指定 typeAliasesPackage: com.ruoyi.**.domain global-config: banner: false db-config: # 主键类型 0:自增数据库ID 1.未定义 2.用户输入 3 id_worker 4.uuid 5.id_worker字符串表示 id-type: AUTO #字段策略 0:“忽视判断”,1:"非 NULL 判断"),2:“非空判断” field-strategy: NOT_NULL # 默认情况下,数据库表下划线命名 table-underline: true# configuration:# map-underscore-to-camel-case: false# cache-enabled: true #全局开关配置缓存# lazyLoadingEnabled: true #开关延迟加载# multipleResultSetsEnabled: true #开启的话,延迟加载一个属性时,会加载对象的所有属性,否则会按需加载属性# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl #打印sql语句,用于调试
3、正常替换为mybatisplus