将mapper.xml中执行的sql打印到控制台上

如果你的项目是springboot项目
在application.yml配置文件中进行如下配置

#mybatis-plus
mybatis-plus.mapper-locations= mapper.xml的文件路径(classpath*:**/mapper/**/*Mapper.xml)
# 将日志打印到控制台
mybatis-plus.configuration.map-underscore-to-camel-case=true
# mp 中的sql 执行的删除 delete实际上是修改dr=1
mybatis-plus.global-config.logic-delete-value=1
# mp 中的sql 执行的不删除时 dr=0
mybatis-plus.global-config.logic-not-delete-value=0
# mp 添加时主键类型为uuid
mybatis-plus.global-config.db-config.id-type=uuid

你可能感兴趣的:(解决方法,java)