Commit 557d5ee1 authored by yanzg's avatar yanzg

修复异常提醒,从而正确的跟踪异常信息

parent 77db7d8f
...@@ -43,7 +43,7 @@ public class Log { ...@@ -43,7 +43,7 @@ public class Log {
* @param ex 错误信息 * @param ex 错误信息
*/ */
public static void error(Class<?> cls, Throwable ex) { public static void error(Class<?> cls, Throwable ex) {
ExceptionHelper.PrintError(cls,ex); ExceptionHelper.PrintError(cls, ex);
add(new LogInfo(cls, new Date(), ex != null, ex, StringHelper.EMPTY)); add(new LogInfo(cls, new Date(), ex != null, ex, StringHelper.EMPTY));
} }
...@@ -55,7 +55,7 @@ public class Log { ...@@ -55,7 +55,7 @@ public class Log {
* @param args 错误消息 * @param args 错误消息
*/ */
public static void error(Class<?> cls, Throwable ex, String msg, Object... args) { public static void error(Class<?> cls, Throwable ex, String msg, Object... args) {
ExceptionHelper.PrintError(cls,ex); ExceptionHelper.PrintError(cls, ex);
String toMsg = getFormat(msg, args); String toMsg = getFormat(msg, args);
add(new LogInfo(cls, new Date(), ex != null, ex, toMsg)); add(new LogInfo(cls, new Date(), ex != null, ex, toMsg));
} }
...@@ -120,6 +120,8 @@ public class Log { ...@@ -120,6 +120,8 @@ public class Log {
/** /**
* 当前线程特殊处理异常,一旦调用必须调用 threadCommit 函数 * 当前线程特殊处理异常,一旦调用必须调用 threadCommit 函数
*
* @return 返回记录日志得对象
*/ */
public static LogDate threadBegin() { public static LogDate threadBegin() {
// 获取当前线程编号 // 获取当前线程编号
...@@ -141,15 +143,11 @@ public class Log { ...@@ -141,15 +143,11 @@ public class Log {
} }
/** /**
* 当前线程结束处理特殊异常 * 当前线程结束处理日志
*
* @return 返回日志信息
*/ */
public static LogDate threadCommit() { public static void threadCommit() {
String threadId = getThreadId(); String threadId = getThreadId();
LogDate log = threadCurrent();
threadCache.remove(threadId); threadCache.remove(threadId);
return log;
} }
/** /**
......
package com.yanzuoguang.cloud; package com.yanzuoguang.util.vo;
import com.yanzuoguang.util.YzgError; import com.yanzuoguang.util.YzgError;
import com.yanzuoguang.util.helper.DateHelper; import com.yanzuoguang.util.helper.DateHelper;
...@@ -141,7 +141,7 @@ public class CloudConfig { ...@@ -141,7 +141,7 @@ public class CloudConfig {
/** /**
* 获取行记的显示的图片 * 获取行记的显示的图片
* *
* @return * @return 临时目录
*/ */
public String getTempFolder(String folder, Date date) { public String getTempFolder(String folder, Date date) {
return String.format("%s/%s/%s/%s", return String.format("%s/%s/%s/%s",
...@@ -155,7 +155,7 @@ public class CloudConfig { ...@@ -155,7 +155,7 @@ public class CloudConfig {
/** /**
* 是否属于网关服务,网关服务不进行监控 * 是否属于网关服务,网关服务不进行监控
* *
* @return * @return 是否属于网关
*/ */
public boolean isGateWay() { public boolean isGateWay() {
return this.applicationName.toLowerCase().matches(this.gateWay); return this.applicationName.toLowerCase().matches(this.gateWay);
......
package com.yanzuoguang.cloud.aop; package com.yanzuoguang.cloud.aop;
import com.yanzuoguang.cloud.aop.log.AspectLogResult; import com.yanzuoguang.log.AspectLogResult;
import com.yanzuoguang.cloud.aop.log.AspectLogStart; import com.yanzuoguang.log.AspectLogStart;
import com.yanzuoguang.log.LogInfoVo;
import com.yanzuoguang.util.exception.CodeException; import com.yanzuoguang.util.exception.CodeException;
import com.yanzuoguang.util.exception.ExceptionHelper; import com.yanzuoguang.util.exception.ExceptionHelper;
import com.yanzuoguang.util.vo.LogVo;
import com.yanzuoguang.util.vo.ResponseResult; import com.yanzuoguang.util.vo.ResponseResult;
import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around; import org.aspectj.lang.annotation.Around;
...@@ -56,7 +56,7 @@ public class AspectFeign { ...@@ -56,7 +56,7 @@ public class AspectFeign {
Object requestBody = aspectLogBody.getRequestBody(joinPoint); Object requestBody = aspectLogBody.getRequestBody(joinPoint);
boolean clear = aspectLogStart.requestLogInit(); boolean clear = aspectLogStart.requestLogInit();
LogVo log = aspectLogStart.requestLog(declaringType, TAG, url, requestBody, clear); LogInfoVo log = aspectLogStart.requestLog(declaringType, TAG, url, requestBody, clear);
Object result = null; Object result = null;
Exception ex = null; Exception ex = null;
...@@ -76,7 +76,7 @@ public class AspectFeign { ...@@ -76,7 +76,7 @@ public class AspectFeign {
ex = e; ex = e;
throw e; throw e;
} finally { } finally {
aspectLogResult.responseLog(declaringType, TAG, url, clear, requestBody, result, ex, log); aspectLogResult.responseLog(log, result, ex);
} }
} }
......
package com.yanzuoguang.cloud.aop; package com.yanzuoguang.cloud.aop;
import com.rabbitmq.client.Channel; import com.rabbitmq.client.Channel;
import com.yanzuoguang.cloud.CloudConfig; import com.yanzuoguang.util.vo.CloudConfig;
import com.yanzuoguang.cloud.vo.YzgFileUploadReqVo; import com.yanzuoguang.cloud.vo.YzgFileUploadReqVo;
import com.yanzuoguang.util.helper.JsonHelper; import com.yanzuoguang.util.helper.JsonHelper;
import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.ProceedingJoinPoint;
...@@ -24,42 +24,6 @@ import java.util.List; ...@@ -24,42 +24,6 @@ import java.util.List;
@Component @Component
public class AspectLogBody { public class AspectLogBody {
private final CloudConfig cloudConfig;
public AspectLogBody(CloudConfig cloudConfig) {
this.cloudConfig = cloudConfig;
}
/**
* 获取JSON,当Json过长时,截断
*
* @param paraJson 长json字符串
* @return 短json字符串
*/
public String getMaxString(String paraJson) {
if (paraJson != null && paraJson.length() > this.cloudConfig.getReqSize()) {
paraJson = paraJson.substring(0, this.cloudConfig.getReqSize());
}
return paraJson;
}
/**
* 获取内容转换为字符串
*
* @param body 内容
* @return 字符串
*/
public String getBodyString(Object body) {
String ret;
if (body instanceof String) {
ret = getMaxString((String) body);
} else {
ret = getMaxString(JsonHelper.serialize(body));
}
return ret;
}
/** /**
* 获取请求内容 * 获取请求内容
* *
......
package com.yanzuoguang.cloud.aop; package com.yanzuoguang.cloud.aop;
import com.yanzuoguang.cloud.aop.log.AspectLogResult; import com.yanzuoguang.log.AspectLogResult;
import com.yanzuoguang.cloud.aop.log.AspectLogStart; import com.yanzuoguang.log.AspectLogStart;
import com.yanzuoguang.log.LogInfoVo;
import com.yanzuoguang.mq.service.MessageLogService; import com.yanzuoguang.mq.service.MessageLogService;
import com.yanzuoguang.util.exception.ExceptionHelper; import com.yanzuoguang.util.exception.ExceptionHelper;
import com.yanzuoguang.util.vo.LogVo;
import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around; import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect; import org.aspectj.lang.annotation.Aspect;
...@@ -64,7 +64,7 @@ public class AspectMq { ...@@ -64,7 +64,7 @@ public class AspectMq {
boolean clear = true; boolean clear = true;
aspectLogStart.requestLogInit(); aspectLogStart.requestLogInit();
LogVo log = aspectLogStart.requestLog(declaringType, TAG, url, requestBody, clear); LogInfoVo log = aspectLogStart.requestLog(declaringType, TAG, url, requestBody, clear);
Object result = null; Object result = null;
Exception ex = null; Exception ex = null;
try { try {
...@@ -77,16 +77,16 @@ public class AspectMq { ...@@ -77,16 +77,16 @@ public class AspectMq {
throw e; throw e;
} finally { } finally {
logService.logCurrentRemove(); logService.logCurrentRemove();
aspectLogResult.responseLog(declaringType, TAG, url, clear, requestBody, result, ex, log); aspectLogResult.responseLog(log, result, ex);
} }
} }
/** /**
* 执行函数 * 执行函数
* *
* @param joinPoint * @param joinPoint 执行函数
* @return * @return 返回值
* @throws Throwable * @throws Throwable 是否抛出异常
*/ */
private Object executeMethod(ProceedingJoinPoint joinPoint) throws Throwable { private Object executeMethod(ProceedingJoinPoint joinPoint) throws Throwable {
return joinPoint.proceed(); return joinPoint.proceed();
......
package com.yanzuoguang.cloud.aop; package com.yanzuoguang.cloud.aop;
import com.yanzuoguang.cloud.CloudConfig;
import com.yanzuoguang.cloud.aop.log.AspectLogResult;
import com.yanzuoguang.cloud.aop.log.AspectLogStart;
import com.yanzuoguang.cloud.service.TokenServiceCall; import com.yanzuoguang.cloud.service.TokenServiceCall;
import com.yanzuoguang.log.AspectLogResult;
import com.yanzuoguang.log.AspectLogStart;
import com.yanzuoguang.log.LogInfoVo;
import com.yanzuoguang.token.TokenHelper; import com.yanzuoguang.token.TokenHelper;
import com.yanzuoguang.util.exception.ExceptionHelper; import com.yanzuoguang.util.exception.ExceptionHelper;
import com.yanzuoguang.util.helper.JsonHelper; import com.yanzuoguang.util.helper.JsonHelper;
import com.yanzuoguang.util.helper.TypeHelper; import com.yanzuoguang.util.helper.TypeHelper;
import com.yanzuoguang.util.log.Log; import com.yanzuoguang.util.log.Log;
import com.yanzuoguang.util.vo.LogVo; import com.yanzuoguang.util.vo.CloudConfig;
import com.yanzuoguang.util.vo.ResponseResult; import com.yanzuoguang.util.vo.ResponseResult;
import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.Signature; import org.aspectj.lang.Signature;
...@@ -90,7 +90,7 @@ public class AspectWeb { ...@@ -90,7 +90,7 @@ public class AspectWeb {
} }
Object requestBody = aspectLogBody.getRequestBody(joinPoint); Object requestBody = aspectLogBody.getRequestBody(joinPoint);
boolean clear = aspectLogStart.requestLogInit(); boolean clear = aspectLogStart.requestLogInit();
LogVo log = aspectLogStart.requestLog(declaringType, TAG, url, requestBody, clear); LogInfoVo log = aspectLogStart.requestLog(declaringType, TAG, url, requestBody, clear);
Exception ex = null; Exception ex = null;
boolean isInit = false; boolean isInit = false;
...@@ -123,7 +123,7 @@ public class AspectWeb { ...@@ -123,7 +123,7 @@ public class AspectWeb {
if (isInit) { if (isInit) {
TokenHelper.remove(); TokenHelper.remove();
} }
aspectLogResult.responseLog(declaringType, TAG, url, clear, requestBody, result, ex, log); aspectLogResult.responseLog(log, result, ex);
} }
} }
......
package com.yanzuoguang.cloud.file; package com.yanzuoguang.cloud.file;
import com.yanzuoguang.cloud.CloudConfig; import com.yanzuoguang.util.vo.CloudConfig;
import com.yanzuoguang.util.helper.FileHelper; import com.yanzuoguang.util.helper.FileHelper;
import com.yanzuoguang.util.helper.StringHelper; import com.yanzuoguang.util.helper.StringHelper;
import com.yanzuoguang.util.vo.file.YzgFileBaseVo; import com.yanzuoguang.util.vo.file.YzgFileBaseVo;
......
import com.yanzuoguang.cloud.aop.Timeout; import com.yanzuoguang.log.Timeout;
import com.yanzuoguang.util.thread.ThreadHelper; import com.yanzuoguang.util.thread.ThreadHelper;
import org.junit.Test; import org.junit.Test;
......
package com.yanzuoguang.cloud.aop.log; package com.yanzuoguang.log;
import com.yanzuoguang.cloud.CloudConfig;
import com.yanzuoguang.cloud.aop.AspectLogBody;
import com.yanzuoguang.log.LogCountTime;
import com.yanzuoguang.util.exception.ExceptionHelper; import com.yanzuoguang.util.exception.ExceptionHelper;
import com.yanzuoguang.util.helper.JsonHelper; import com.yanzuoguang.util.helper.JsonHelper;
import com.yanzuoguang.util.helper.StringHelper; import com.yanzuoguang.util.helper.StringHelper;
import com.yanzuoguang.util.log.Log; import com.yanzuoguang.util.log.Log;
import com.yanzuoguang.util.vo.LogVo; import com.yanzuoguang.util.vo.CloudConfig;
import com.yanzuoguang.util.vo.ResponseResult; import com.yanzuoguang.util.vo.ResponseResult;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
...@@ -21,33 +18,28 @@ public class AspectLogResult { ...@@ -21,33 +18,28 @@ public class AspectLogResult {
private final CloudConfig cloudConfig; private final CloudConfig cloudConfig;
private final LogLocal logLocal; private final LogLocal logLocal;
private final AspectLogBody aspectLogBody; private final LogString logString;
private final LogCountTime logCountTime; private final LogCountTime logCountTime;
private final ResponseResult<String> responseDefault = ResponseResult.result("操作成功"); private final ResponseResult<String> responseDefault = ResponseResult.result("操作成功");
public AspectLogResult(CloudConfig cloudConfig, LogLocal logLocal, AspectLogBody aspectLogBody, LogCountTime logCountTime) { public AspectLogResult(CloudConfig cloudConfig, LogLocal logLocal, LogString logString, LogCountTime logCountTime) {
this.cloudConfig = cloudConfig; this.cloudConfig = cloudConfig;
this.logLocal = logLocal; this.logLocal = logLocal;
this.aspectLogBody = aspectLogBody; this.logString = logString;
this.logCountTime = logCountTime; this.logCountTime = logCountTime;
} }
/** /**
* 保存日志 * 保存日志
* *
* @param cls 类型
* @param tag 标签名称
* @param url 地址
* @param logFlag 请求日志
* @param requestBody 请求内容
* @param result 结果 * @param result 结果
* @param resultEx 异常结果 * @param resultEx 异常结果
* @param log 内容 * @param log 内容
*/ */
// @Async // @Async
public void responseLog(Class<?> cls, String tag, String url, boolean logFlag, Object requestBody, Object result, Exception resultEx, LogVo log) { public void responseLog(LogInfoVo log, Object result, Exception resultEx) {
// 执行时间 // 执行时间
long time = System.currentTimeMillis() - log.getStart(); long time = System.currentTimeMillis() - log.getStart();
// 全路径 // 全路径
...@@ -68,7 +60,7 @@ public class AspectLogResult { ...@@ -68,7 +60,7 @@ public class AspectLogResult {
logLocal.remove(log); logLocal.remove(log);
return; return;
} }
String body = aspectLogBody.getBodyString(requestBody); String body = logString.getBodyString(requestBody);
if (!StringHelper.compare(log.getContent(), body)) { if (!StringHelper.compare(log.getContent(), body)) {
log.setContentTo(body); log.setContentTo(body);
} }
......
package com.yanzuoguang.cloud.aop.log; package com.yanzuoguang.log;
import com.yanzuoguang.cloud.CloudConfig;
import com.yanzuoguang.cloud.aop.AspectLogBody;
import com.yanzuoguang.log.LogCountTime;
import com.yanzuoguang.util.exception.ExceptionHelper; import com.yanzuoguang.util.exception.ExceptionHelper;
import com.yanzuoguang.util.helper.DateHelper;
import com.yanzuoguang.util.helper.StringHelper;
import com.yanzuoguang.util.log.Log; import com.yanzuoguang.util.log.Log;
import com.yanzuoguang.util.vo.LogVo; import com.yanzuoguang.util.vo.CloudConfig;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
import java.util.Date;
/** /**
* 写入日志 * 写入日志
* *
...@@ -18,16 +19,29 @@ public class AspectLogStart { ...@@ -18,16 +19,29 @@ public class AspectLogStart {
private final CloudConfig cloudConfig; private final CloudConfig cloudConfig;
private final LogLocal logLocal; private final LogLocal logLocal;
private final AspectLogBody aspectLogBody; private final LogString logString;
private final LogCountTime logCountTime; private final LogCountTime logCountTime;
public AspectLogStart(CloudConfig cloudConfig, LogLocal logLocal, AspectLogBody aspectLogBody, LogCountTime logCountTime) { public AspectLogStart(CloudConfig cloudConfig, LogLocal logLocal, LogString logString, LogCountTime logCountTime) {
this.cloudConfig = cloudConfig; this.cloudConfig = cloudConfig;
this.logLocal = logLocal; this.logLocal = logLocal;
this.aspectLogBody = aspectLogBody; this.logString = logString;
this.logCountTime = logCountTime; this.logCountTime = logCountTime;
} }
/**
* 获取是否清空日志的标签
*
* @return 返回日志是否清空
*/
public boolean requestLogInit() {
boolean clear = Log.threadCurrent() == null;
if (clear) {
Log.threadBegin();
}
return clear;
}
/** /**
* 记录请求日志 * 记录请求日志
* *
...@@ -37,34 +51,32 @@ public class AspectLogStart { ...@@ -37,34 +51,32 @@ public class AspectLogStart {
* @param logFlag 是否记录日志 * @param logFlag 是否记录日志
*/ */
// @Async // @Async
public LogVo requestLog(Class<?> cls, String tag, String url, Object requestBody, boolean logFlag) { public LogInfoVo requestLog(Class<?> cls, String tag, String url, Object requestBody, boolean logFlag) {
LogVo log = new LogVo(); String body;
try { try {
body = logString.getBodyString(requestBody);
} catch (Exception ex) {
ExceptionHelper.PrintError(AspectLogStart.class, ex);
body = StringHelper.EMPTY;
}
LogInfoVo log = new LogInfoVo();
log.setCreateDate(DateHelper.getDateTimeString(new Date()));
// 写入其他对象
log.setActionKey(tag);
log.setActionSubKey(String.format("%s:%s", this.cloudConfig.getApplicationName(), url));
log.setContent(body);
// 生命日志对象爱嗯
log.setLogId(StringHelper.getNewID());
this.logLocal.startLog(log);
String fullUrl = String.format("%s:%s", tag, url); String fullUrl = String.format("%s:%s", tag, url);
logCountTime.start(fullUrl); logCountTime.start(fullUrl);
String body = aspectLogBody.getBodyString(requestBody);
this.logLocal.startLog(log, tag, String.format("%s:%s", this.cloudConfig.getApplicationName(), url), body);
boolean isLog = logFlag && this.cloudConfig.isLogCommon(); boolean isLog = logFlag && this.cloudConfig.isLogCommon();
if (isLog) { if (isLog) {
Log.info(cls, " %s [ %s ] request: %s", tag, url, body); Log.info(cls, " %s [ %s ] request: %s", tag, url, body);
} }
} catch (Exception ex) {
ExceptionHelper.PrintError(AspectLogStart.class, ex);
}
return log; return log;
} }
/**
* 获取是否清空日志的标签
*
* @return 返回日志是否清空
*/
public boolean requestLogInit() {
boolean clear = Log.threadCurrent() == null;
if (clear) {
Log.threadBegin();
}
return clear;
}
} }
package com.yanzuoguang.cloud.aop.log; package com.yanzuoguang.log;
import com.yanzuoguang.cloud.CloudConfig;
import com.yanzuoguang.cloud.aop.LogFeign;
import com.yanzuoguang.util.exception.ExceptionHelper; import com.yanzuoguang.util.exception.ExceptionHelper;
import com.yanzuoguang.util.thread.ThreadNext; import com.yanzuoguang.util.thread.ThreadNext;
import com.yanzuoguang.util.vo.LogVo; import com.yanzuoguang.util.vo.CloudConfig;
import org.springframework.beans.factory.InitializingBean; import org.springframework.beans.factory.InitializingBean;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
...@@ -21,7 +19,7 @@ public class LogBase implements ThreadNext.Next, InitializingBean { ...@@ -21,7 +19,7 @@ public class LogBase implements ThreadNext.Next, InitializingBean {
/** /**
* 缓存队列 * 缓存队列
*/ */
protected volatile LinkedBlockingQueue<LogVo> cache = new LinkedBlockingQueue<>(); protected volatile LinkedBlockingQueue<LogInfoVo> cache = new LinkedBlockingQueue<>();
private final CloudConfig cloudConfig; private final CloudConfig cloudConfig;
private final LogFeignBase logFeign; private final LogFeignBase logFeign;
...@@ -57,9 +55,9 @@ public class LogBase implements ThreadNext.Next, InitializingBean { ...@@ -57,9 +55,9 @@ public class LogBase implements ThreadNext.Next, InitializingBean {
/** /**
* 添加日志到缓存中,并不是立即添加,而是通过线程执行,防止对环境造成影响 * 添加日志到缓存中,并不是立即添加,而是通过线程执行,防止对环境造成影响
* *
* @param logVo * @param logVo 日志信息
*/ */
public void addLog(LogVo logVo) { public void addLog(LogInfoVo logVo) {
// 当不记录日志时,则直接忽略 // 当不记录日志时,则直接忽略
if (!cloudConfig.isLogBase()) { if (!cloudConfig.isLogBase()) {
return; return;
...@@ -71,7 +69,6 @@ public class LogBase implements ThreadNext.Next, InitializingBean { ...@@ -71,7 +69,6 @@ public class LogBase implements ThreadNext.Next, InitializingBean {
* 执行下一个函数,出现异常会继续执行 * 执行下一个函数,出现异常会继续执行
* *
* @return 是否继续执行 * @return 是否继续执行
* @throws Exception 异常信息
*/ */
@Override @Override
public boolean next() { public boolean next() {
...@@ -79,7 +76,7 @@ public class LogBase implements ThreadNext.Next, InitializingBean { ...@@ -79,7 +76,7 @@ public class LogBase implements ThreadNext.Next, InitializingBean {
return true; return true;
} }
// 循环处理日志信息 // 循环处理日志信息
while (cache.size() > 0) { while (!cache.isEmpty()) {
// 取出一条日志 // 取出一条日志
LogVo item = cache.poll(); LogVo item = cache.poll();
// 判断日志信息是否为空 // 判断日志信息是否为空
...@@ -99,7 +96,7 @@ public class LogBase implements ThreadNext.Next, InitializingBean { ...@@ -99,7 +96,7 @@ public class LogBase implements ThreadNext.Next, InitializingBean {
/** /**
* 沉睡时间 * 沉睡时间
* *
* @return * @return 下次执行时间
*/ */
@Override @Override
public int getNextTime() { public int getNextTime() {
......
package com.yanzuoguang.cloud.aop; package com.yanzuoguang.log;
import com.yanzuoguang.cloud.aop.log.LogFeignBase;
/** /**
* 调用外置服务保存日志对象 * 调用外置服务保存日志对象
......
package com.yanzuoguang.cloud.aop.log; package com.yanzuoguang.log;
import com.yanzuoguang.util.vo.LogVo;
import com.yanzuoguang.util.vo.ResponseResult; import com.yanzuoguang.util.vo.ResponseResult;
/** /**
......
package com.yanzuoguang.cloud.aop.log; package com.yanzuoguang.log;
import com.yanzuoguang.util.vo.LogVo;
import com.yanzuoguang.util.vo.ResponseResult; import com.yanzuoguang.util.vo.ResponseResult;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
......
package com.yanzuoguang.cloud.aop.log; package com.yanzuoguang.log;
import java.util.List; import java.util.List;
......
package com.yanzuoguang.cloud.aop.log; package com.yanzuoguang.log;
import com.yanzuoguang.cloud.CloudConfig; import com.yanzuoguang.cloud.CloudConfig;
import com.yanzuoguang.util.helper.StringHelper; import com.yanzuoguang.util.helper.StringHelper;
......
package com.yanzuoguang.log;
import io.swagger.annotations.ApiModelProperty;
public class LogInfoVo extends LogVo {
/**
* 开始时间
*/
@ApiModelProperty(value = "开始时间", notes = "单位(毫秒)")
private long start = System.currentTimeMillis();
public long getStart() {
return start;
}
public void setStart(long start) {
this.start = start;
}
}
package com.yanzuoguang.cloud.aop.log; package com.yanzuoguang.log;
import com.yanzuoguang.cloud.CloudConfig;
import com.yanzuoguang.cloud.aop.Timeout;
import com.yanzuoguang.util.cache.MemoryCache; import com.yanzuoguang.util.cache.MemoryCache;
import com.yanzuoguang.util.helper.DateHelper;
import com.yanzuoguang.util.helper.StringHelper; import com.yanzuoguang.util.helper.StringHelper;
import com.yanzuoguang.util.thread.ThreadNext; import com.yanzuoguang.util.thread.ThreadNext;
import com.yanzuoguang.util.vo.LogVo; import com.yanzuoguang.util.vo.CloudConfig;
import org.springframework.beans.factory.InitializingBean; import org.springframework.beans.factory.InitializingBean;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
import java.util.*; import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
/** /**
* 当前线程日志编写 * 当前线程日志编写
...@@ -19,7 +19,6 @@ import java.util.*; ...@@ -19,7 +19,6 @@ import java.util.*;
*/ */
@Component @Component
public class LogLocal implements ThreadNext.Next, InitializingBean { public class LogLocal implements ThreadNext.Next, InitializingBean {
/** /**
* 一个请求最多保留60分钟 * 一个请求最多保留60分钟
*/ */
...@@ -38,7 +37,7 @@ public class LogLocal implements ThreadNext.Next, InitializingBean { ...@@ -38,7 +37,7 @@ public class LogLocal implements ThreadNext.Next, InitializingBean {
/** /**
* 缓存队列 * 缓存队列
*/ */
protected volatile MemoryCache<Timeout<LogVo>> cache = new MemoryCache<>(CLEAR_CACHE); protected volatile MemoryCache<Timeout<LogInfoVo>> cache = new MemoryCache<>(CLEAR_CACHE);
public LogLocal(LogBase logBase, CloudConfig cloudConfig, List<LogFilter> logFilters) { public LogLocal(LogBase logBase, CloudConfig cloudConfig, List<LogFilter> logFilters) {
this.logBase = logBase; this.logBase = logBase;
...@@ -55,21 +54,10 @@ public class LogLocal implements ThreadNext.Next, InitializingBean { ...@@ -55,21 +54,10 @@ public class LogLocal implements ThreadNext.Next, InitializingBean {
* 开始记录日志 * 开始记录日志
* *
* @param log 日志对象 * @param log 日志对象
* @param actionKey 功能名称
* @param actionSubKey 子功能名称 = 服务名称 + 地址
* @param content 请求内容
*/ */
public void startLog(LogVo log, String actionKey, String actionSubKey, String content) { public void startLog(LogInfoVo log) {
// 声明超时对象 // 声明超时对象
Timeout<LogVo> time = new Timeout<>(log); Timeout<LogInfoVo> time = new Timeout<>(log);
log.setCreateDate(DateHelper.getDateTimeString(new Date(time.getStart())));
// 写入其他对象
log.setActionKey(actionKey);
log.setActionSubKey(actionSubKey);
log.setContent(content);
// 生命日志对象爱嗯
log.setLogId(StringHelper.getNewID());
cache.put(log.getLogId(), time); cache.put(log.getLogId(), time);
} }
...@@ -81,7 +69,7 @@ public class LogLocal implements ThreadNext.Next, InitializingBean { ...@@ -81,7 +69,7 @@ public class LogLocal implements ThreadNext.Next, InitializingBean {
* @param result 结果 * @param result 结果
* @param isError 是否出错 * @param isError 是否出错
*/ */
public void result(LogVo log, String status, String result, boolean isError) { public void result(LogInfoVo log, String status, String result, boolean isError) {
if (log == null) { if (log == null) {
return; return;
} }
...@@ -102,11 +90,11 @@ public class LogLocal implements ThreadNext.Next, InitializingBean { ...@@ -102,11 +90,11 @@ public class LogLocal implements ThreadNext.Next, InitializingBean {
* @param result 结果 * @param result 结果
* @param write 写入 * @param write 写入
*/ */
private void resultWrite(LogVo log, String status, String result, boolean write) { private void resultWrite(LogInfoVo log, String status, String result, boolean write) {
if (log == null || StringHelper.isEmpty(log.getLogId())) { if (log == null || StringHelper.isEmpty(log.getLogId())) {
return; return;
} }
Timeout<LogVo> timeout; Timeout<LogInfoVo> timeout;
// 判断是否延时结果 // 判断是否延时结果
boolean isMaxTime = StringHelper.compare(status, MAX_TIME); boolean isMaxTime = StringHelper.compare(status, MAX_TIME);
if (isMaxTime) { if (isMaxTime) {
...@@ -131,7 +119,7 @@ public class LogLocal implements ThreadNext.Next, InitializingBean { ...@@ -131,7 +119,7 @@ public class LogLocal implements ThreadNext.Next, InitializingBean {
* *
* @param log 删除日志 * @param log 删除日志
*/ */
public void remove(LogVo log) { public void remove(LogInfoVo log) {
this.resultWrite(log, StringHelper.EMPTY, StringHelper.EMPTY, false); this.resultWrite(log, StringHelper.EMPTY, StringHelper.EMPTY, false);
} }
...@@ -165,8 +153,8 @@ public class LogLocal implements ThreadNext.Next, InitializingBean { ...@@ -165,8 +153,8 @@ public class LogLocal implements ThreadNext.Next, InitializingBean {
*/ */
@Override @Override
public boolean next() { public boolean next() {
Collection<Timeout<LogVo>> values = cache.getValues(); Collection<Timeout<LogInfoVo>> values = cache.getValues();
for (Timeout<LogVo> timeout : values) { for (Timeout<LogInfoVo> timeout : values) {
if (timeout == null) { if (timeout == null) {
continue; continue;
} }
......
package com.yanzuoguang.log;
import com.yanzuoguang.util.helper.JsonHelper;
import com.yanzuoguang.util.vo.CloudConfig;
import org.springframework.stereotype.Component;
/**
* 获取日志字符串
*
* @author 颜佐光
*/
@Component
public class LogString {
private final CloudConfig cloudConfig;
public LogString(CloudConfig cloudConfig) {
this.cloudConfig = cloudConfig;
}
/**
* 获取JSON,当Json过长时,截断
*
* @param paraJson 长json字符串
* @return 短json字符串
*/
public String getMaxString(String paraJson) {
if (paraJson != null && paraJson.length() > this.cloudConfig.getReqSize()) {
paraJson = paraJson.substring(0, this.cloudConfig.getReqSize());
}
return paraJson;
}
/**
* 获取内容转换为字符串
*
* @param body 内容
* @return 字符串
*/
public String getBodyString(Object body) {
String ret;
if (body instanceof String) {
ret = getMaxString((String) body);
} else {
ret = getMaxString(JsonHelper.serialize(body));
}
return ret;
}
}
package com.yanzuoguang.util.vo; package com.yanzuoguang.log;
import com.yanzuoguang.util.vo.BaseVo;
import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
...@@ -45,7 +46,7 @@ public class LogVo extends BaseVo { ...@@ -45,7 +46,7 @@ public class LogVo extends BaseVo {
/** /**
* 接口处理状态,是否有异常 * 接口处理状态,是否有异常
*/ */
@ApiModelProperty(value = "执行状态", notes = "0表示成功,其他状态表示失败", required = true, example = "0") @ApiModelProperty(value = "执行状态", notes = "0表示成功,其他状态表示失败,-1表示执行中", required = true, example = "0")
private String status; private String status;
/** /**
* 使用时间 * 使用时间
...@@ -57,11 +58,6 @@ public class LogVo extends BaseVo { ...@@ -57,11 +58,6 @@ public class LogVo extends BaseVo {
*/ */
@ApiModelProperty(value = "创建时间", notes = "单位(毫秒)", required = false, example = "1987-11-24 23:15:18") @ApiModelProperty(value = "创建时间", notes = "单位(毫秒)", required = false, example = "1987-11-24 23:15:18")
private String createDate; private String createDate;
/**
* 开始时间
*/
@ApiModelProperty(value = "开始时间", notes = "单位(毫秒)")
private long start = System.currentTimeMillis();
public String getLogId() { public String getLogId() {
return logId; return logId;
...@@ -134,12 +130,4 @@ public class LogVo extends BaseVo { ...@@ -134,12 +130,4 @@ public class LogVo extends BaseVo {
public void setCreateDate(String createDate) { public void setCreateDate(String createDate) {
this.createDate = createDate; this.createDate = createDate;
} }
public long getStart() {
return start;
}
public void setStart(long start) {
this.start = start;
}
} }
package com.yanzuoguang.cloud.aop; package com.yanzuoguang.log;
/** /**
* 超时对象 * 超时对象
......
package com.yanzuoguang.cloud.file; package com.yanzuoguang.cloud.file;
import com.yanzuoguang.cloud.CloudConfig; import com.yanzuoguang.util.vo.CloudConfig;
import com.yanzuoguang.cloud.file.dao.YzgFileDao; import com.yanzuoguang.cloud.file.dao.YzgFileDao;
import com.yanzuoguang.cloud.helper.HttpFileHelper; import com.yanzuoguang.cloud.helper.HttpFileHelper;
import com.yanzuoguang.cloud.vo.YzgFileVo; import com.yanzuoguang.cloud.vo.YzgFileVo;
......
package com.yanzuoguang.cloud.file; package com.yanzuoguang.cloud.file;
import com.yanzuoguang.cloud.CloudConfig; import com.yanzuoguang.util.vo.CloudConfig;
import com.yanzuoguang.cloud.helper.HttpFileHelper; import com.yanzuoguang.cloud.helper.HttpFileHelper;
import com.yanzuoguang.cloud.vo.YzgFileUploadReqVo; import com.yanzuoguang.cloud.vo.YzgFileUploadReqVo;
import com.yanzuoguang.util.MediaHelper; import com.yanzuoguang.util.MediaHelper;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment