diff --git a/aircraft-common/src/main/java/com/aircraft/config/mybatis/P6spyLogger.java b/aircraft-common/src/main/java/com/aircraft/config/mybatis/P6spyLogger.java new file mode 100644 index 0000000..cc6e207 --- /dev/null +++ b/aircraft-common/src/main/java/com/aircraft/config/mybatis/P6spyLogger.java @@ -0,0 +1,80 @@ +/* + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +package com.aircraft.config.mybatis; + +import com.p6spy.engine.logging.Category; +import com.p6spy.engine.spy.appender.FormattedLogger; +import lombok.extern.slf4j.Slf4j; +import org.apache.commons.lang3.StringUtils; + +/** + * P6spy日志实现 + *
+ * https://blog.csdn.net/z69183787/article/details/43453581 + *
+ * + * @see FormattedLogger + */ +@Slf4j +public class P6spyLogger extends FormattedLogger { + + @Override + public void logException(Exception e) { + log.info("", e); + } + + @Override + public void logText(String text) { + log.info(text); + } + + @Override + public void logSQL(int connectionId, String now, long elapsed, + Category category, String prepared, String sql, String url) { + final String msg = strategy.formatMessage(connectionId, now, elapsed, + category.toString(), prepared, sql, url); + + if (StringUtils.isEmpty(msg)) { + return; + } + if (Category.ERROR.equals(category)) { + log.error(msg); + } else if (Category.WARN.equals(category)) { + log.warn(msg); + } else if (Category.DEBUG.equals(category)) { + log.debug(msg); + } else { + log.info(msg); + } + } + + @Override + public boolean isCategoryEnabled(Category category) { + if (Category.ERROR.equals(category)) { + return log.isErrorEnabled(); + } else if (Category.WARN.equals(category)) { + return log.isWarnEnabled(); + } else if (Category.DEBUG.equals(category)) { + return log.isDebugEnabled(); + } else { + return log.isInfoEnabled(); + } + } +} diff --git a/aircraft-system/src/main/resources/spy.properties b/aircraft-system/src/main/resources/spy.properties index 81f7e36..1a6d249 100644 --- a/aircraft-system/src/main/resources/spy.properties +++ b/aircraft-system/src/main/resources/spy.properties @@ -2,8 +2,8 @@ modulelist=com.baomidou.mybatisplus.extension.p6spy.MybatisPlusLogFactory,com.p6spy.engine.outage.P6OutageFactory # 自定义日志打印 logMessageFormat=com.aircraft.config.mybatis.CustomP6SpyLogger -# 日志输出到控制台 -appender=com.baomidou.mybatisplus.extension.p6spy.StdoutLogger +# 日志输出到文件 +appender=com.aircraft.config.mybatis.P6spyLogger # 日期格式 dateformat=yyyy-MM-dd HH:mm:ss # 实际驱动 可多个