方式一 mybatis-plus: configuration: # 是否将sql打印到控制面板(该配置会将sql语句和查询的结果都打印到控制台) log-impl: org.apache.ibatis.logging.stdout.StdOutImpl 1. 2. 3. 4. 方式二 增加logback日志 logging: level: com.example.mapper: debug 1. 2. 3....
mybatis-plus: # 日志配置 logging: level: #基础包 com.ruoyi: debug #指定报的日志级别 org.springframework: warn mybatis-plus: mapper-locations: classpath*:com/gblfy/**/mapping/*.xml configuration: # log-impl: org.apache.ibatis.logging.stdout.StdOutImpl 1. 2. 3. 4. 5. 6. 7. 8. 9...