p6spy監控springboot資料庫操控

2021-10-07 01:18:01 字數 702 閱讀 7683

1.替換jdbc driver 為 com.p6spy.engine.spy.p6spydriver

2.修改jdbc url 為 jdbc:p6spy:***

3.修改spy.properties

module.log=com.p6spy.engine.logging.p6logfactory,com.p6spy.engine.outage.p6outagefactory

# 自定義日誌列印

logmessageformat=org.pkaq.core.log.p6spylogger

# 使用日誌系統記錄sql

## 配置記錄log例外

excludecategories=info,debug,result,batc,resultset

# 設定使用p6spy driver來做**

deregisterdrivers=

true

# 日期格式

dateformat=yyyy-mm-dd hh:mm:ss

# 實際驅動

driverlist=com.mysql.jdbc.driver

# 是否開啟慢sql記錄

outagedetection=

true

# 慢sql記錄標準 秒

outagedetectioninterval=

2

Spring使用p6spy監控sql

2.將p6spy.jar放到應用的lib目錄下,將spy.properties放到web inf classes目錄下 3.修改spy.properties樣本的第41行,使用oracle驅動,封閉預設的mysql驅動 oracle driver realdriver oracle.jdbc.dri...

P6Spy 監控JDBC詳細配置說明

1 解壓出p6spy.jar 和 spy.properties兩個檔案 2 將p6spy.jar 放入應用程式的web inf lib目錄,將spy.properties放入web inf classes目錄 也就是工程的src下面 3 修改spy.properties realdriver com...

p6spy安裝使用 tomcat

有時候在hibernate除錯中,因為需要觀察到sql語句及其變數,可能會使用到p6spy這個工具類,安裝步驟如下 1.拷貝p6spy.jar包到 tomcat home common lib 下面,或者自己的工程的lib下面。2.拷貝spy.properties到工程的classes下面,使得應用...