一. jpa方式
spring:
jpa:
database: MYSQL
show-sql: true
hibernate:
ddl-auto: none
properties:
hibernate:
format_sql: false
如果你沒用JPA怎么辦队魏?接著往下看
二. druid方式
- 引入阿里巴巴的druid包
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
<version>${druid.version}</version>
</dependency>
- 配置連接池和監(jiān)控
logging:
level:
druid.sql.Statement: DEBUG ## 這是druid能打印sql日志的前提,必須設(shè)置為debug等級(jí)
spring:
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://mysql-dev.database:3306/dynamic-target?autoReconnect=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false
username: root
password: 123456
druid:
db-type: mysql
filter:
stat:
enabled: true
db-type: mysql
log-slow-sql: true
slow-sql-millis: 2000
merge-sql: false
slf4j:
enabled: true
statement-log-enabled: true
statement-executable-sql-log-enable: true
web-stat-filter:
enabled: true
stat-view-servlet:
enabled: true
url-pattern: "/druid/*"
login-username: admin
login-password: 666666
但是感覺打印出來的看起來~真的是又臭又長(zhǎng)。饲宿。。
三. mybatis-plus 整合 p6spy方式
- 引入依賴jar包
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>${mybatis-plus.version}</version>
</dependency>
<dependency>
<groupId>p6spy</groupId>
<artifactId>p6spy</artifactId>
<version>${p6spy.version}</version>
</dependency>
- 修改application.yml配置
spring:
datasource:
driver-class-name: com.p6spy.engine.spy.P6SpyDriver # 把jdbc驅(qū)動(dòng)換成p6spy
## 修改url jdbc:p6spy:mysql
url: jdbc:p6spy:mysql://mysql-dev.database:3306/dynamic-target?autoReconnect=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false
username: root
password: 123456
- 在resource目錄下添加spy.properties配置文件
#mybatis 3.2.1以上使用
modulelist=com.baomidou.mybatisplus.extension.p6spy.MybatisPlusLogFactory,com.p6spy.engine.outage.P6OutageFactory
#mybatis 3.2.1以下使用或者不配置
#modulelist=com.p6spy.engine.logging.P6LogFactory,com.p6spy.engine.outage.P6OutageFactory
# 自定義日志打印
logMessageFormat=com.baomidou.mybatisplus.extension.p6spy.P6SpyLogger
#日志輸出到控制臺(tái)
#appender=com.baomidou.mybatisplus.extension.p6spy.StdoutLogger
# 使用日志系統(tǒng)記錄 sql
appender=com.p6spy.engine.spy.appender.Slf4JLogger
# 設(shè)置 p6spy driver 代理
deregisterdrivers=true
# 取消JDBC URL前綴
useprefix=true
# 配置記錄 Log 例外,可去掉的結(jié)果集有error,info,batch,debug,statement,commit,rollback,result,resultset.
excludecategories=info,debug,result,commit,resultset
# 日期格式
dateformat=yyyy-MM-dd HH:mm:ss
# 實(shí)際驅(qū)動(dòng)可多個(gè)
driverlist=com.mysql.cj.jdbc.Driver
# 是否開啟慢SQL記錄
outagedetection=true
# 慢SQL記錄標(biāo)準(zhǔn) 2 秒
outagedetectioninterval=2
附錄:
- spy.properties
# 指定應(yīng)用的日志攔截模塊,默認(rèn)為com.p6spy.engine.spy.P6SpyFactory
#modulelist=com.p6spy.engine.spy.P6SpyFactory,com.p6spy.engine.logging.P6LogFactory,com.p6spy.engine.outage.P6OutageFactory
# 真實(shí)JDBC driver , 多個(gè)以 逗號(hào) 分割 默認(rèn)為空
#driverlist=
# 是否自動(dòng)刷新 默認(rèn) flase
#autoflush=false
# 配置SimpleDateFormat日期格式 默認(rèn)為空
#dateformat=
# 打印堆棧跟蹤信息 默認(rèn)flase
#stacktrace=false
# 如果 stacktrace=true胆描,則可以指定具體的類名來進(jìn)行過濾瘫想。
#stacktraceclass=
# 監(jiān)測(cè)屬性配置文件是否進(jìn)行重新加載
#reloadproperties=false
# 屬性配置文件重新加載的時(shí)間間隔,單位:秒 默認(rèn)60s
#reloadpropertiesinterval=60
# 指定 Log 的 appender昌讲,取值:
#appender=com.p6spy.engine.spy.appender.Slf4JLogger
#appender=com.p6spy.engine.spy.appender.StdoutLogger
#appender=com.p6spy.engine.spy.appender.FileLogger
# 指定 Log 的文件名 默認(rèn) spy.log
#logfile=spy.log
# 指定是否每次是增加 Log国夜,設(shè)置為 false 則每次都會(huì)先進(jìn)行清空 默認(rèn)true
#append=true
# 指定日志輸出樣式 默認(rèn)為com.p6spy.engine.spy.appender.SingleLineFormat , 單行輸出 不格式化語(yǔ)句
#logMessageFormat=com.p6spy.engine.spy.appender.SingleLineFormat
# 也可以采用 com.p6spy.engine.spy.appender.CustomLineFormat 來自定義輸出樣式, 默認(rèn)值是%(currentTime)|%(executionTime)|%(category)|connection%(connectionId)|%(sqlSingleLine)
# 可用的變量為:
# %(connectionId) connection id
# %(currentTime) 當(dāng)前時(shí)間
# %(executionTime) 執(zhí)行耗時(shí)
# %(category) 執(zhí)行分組
# %(effectiveSql) 提交的SQL 換行
# %(effectiveSqlSingleLine) 提交的SQL 不換行顯示
# %(sql) 執(zhí)行的真實(shí)SQL語(yǔ)句,已替換占位
# %(sqlSingleLine) 執(zhí)行的真實(shí)SQL語(yǔ)句短绸,已替換占位 不換行顯示
#customLogMessageFormat=%(currentTime)|%(executionTime)|%(category)|connection%(connectionId)|%(sqlSingleLine)
# date類型字段記錄日志時(shí)使用的日期格式 默認(rèn)dd-MMM-yy
#databaseDialectDateFormat=dd-MMM-yy
# boolean類型字段記錄日志時(shí)使用的日期格式 默認(rèn)boolean 可選值numeric
#databaseDialectBooleanFormat=boolean
# 是否通過jmx暴露屬性 默認(rèn)true
#jmx=true
# 如果jmx設(shè)置為true 指定通過jmx暴露屬性時(shí)的前綴 默認(rèn)為空
# com.p6spy(.<jmxPrefix>)?:name=<optionsClassName>
#jmxPrefix=
# 是否顯示納秒 默認(rèn)false
#useNanoTime=false
# 實(shí)際數(shù)據(jù)源 JNDI
#realdatasource=/RealMySqlDS
# 實(shí)際數(shù)據(jù)源 datasource class
#realdatasourceclass=com.mysql.jdbc.jdbc2.optional.MysqlDataSource
# 實(shí)際數(shù)據(jù)源所攜帶的配置參數(shù) 以 k=v 方式指定 以 分號(hào) 分割
#realdatasourceproperties=port;3306,serverName;myhost,databaseName;jbossdb,foo;bar
# jndi數(shù)據(jù)源配置
# 設(shè)置 JNDI 數(shù)據(jù)源的 NamingContextFactory车吹。
#jndicontextfactory=org.jnp.interfaces.NamingContextFactory
# 設(shè)置 JNDI 數(shù)據(jù)源的提供者的 URL。
#jndicontextproviderurl=localhost:1099
# 設(shè)置 JNDI 數(shù)據(jù)源的一些定制信息醋闭,以分號(hào)分隔窄驹。
#jndicontextcustom=java.naming.factory.url.pkgs;org.jboss.naming:org.jnp.interfaces
# 是否開啟日志過濾 默認(rèn)false, 這項(xiàng)配置是否生效前提是配置了 include/exclude/sqlexpression
#filter=false
# 過濾 Log 時(shí)所包含的表名列表证逻,以逗號(hào)分隔 默認(rèn)為空
#include=
# 過濾 Log 時(shí)所排除的表名列表乐埠,以逗號(hào)分隔 默認(rèn)為空
#exclude=
# 過濾 Log 時(shí)的 SQL 正則表達(dá)式名稱 默認(rèn)為空
#sqlexpression=
#顯示指定過濾 Log 時(shí)排隊(duì)的分類列表,取值: error, info, batch, debug, statement,
#commit, rollback, result and resultset are valid values
# (默認(rèn) info,debug,result,resultset,batch)
#excludecategories=info,debug,result,resultset,batch
# 是否過濾二進(jìn)制字段
# (default is false)
#excludebinary=false
# P6Log 模塊執(zhí)行時(shí)間設(shè)置囚企,整數(shù)值 (以毫秒為單位)丈咐,只有當(dāng)超過這個(gè)時(shí)間才進(jìn)行記錄 Log。 默認(rèn)為0
#executionThreshold=
# P6Outage 模塊是否記錄較長(zhǎng)時(shí)間運(yùn)行的語(yǔ)句 默認(rèn)false
# outagedetection=true|false
# P6Outage 模塊執(zhí)行時(shí)間設(shè)置龙宏,整數(shù)值 (以秒為單位))园骆,只有當(dāng)超過這個(gè)時(shí)間才進(jìn)行記錄 Log捏萍。 默認(rèn)30s
# outagedetectioninterval=integer time (seconds)