springboot 配置mybatis打印sqlcss
方式 一:spring
########################################################
###配置打印sql
########################################################
logging:
level:
com.threefivework.mymall.dao.mapper: DEBUG //包路徑爲mapper文件包路徑
方式二:
在application.yml(.properties)中增長配置,在控制檯打印sql:sql
mybatis configuration: log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
參考類:org.apache.ibatis.session.Configuration
log-impl指定的值爲org.apache.ibatis.logging.Log接口的某個實現類apache