Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
Y
yzg-util
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
YZG
yzg-util
Commits
805755e1
Commit
805755e1
authored
Mar 10, 2025
by
yanzg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复异常提醒,从而正确的跟踪异常信息
parent
624d3779
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
73 additions
and
79 deletions
+73
-79
LogVo.java
...til-base/src/main/java/com/yanzuoguang/util/vo/LogVo.java
+21
-19
AspectFeign.java
.../src/main/java/com/yanzuoguang/cloud/aop/AspectFeign.java
+5
-6
AspectMq.java
...oud/src/main/java/com/yanzuoguang/cloud/aop/AspectMq.java
+6
-7
AspectWeb.java
...ud/src/main/java/com/yanzuoguang/cloud/aop/AspectWeb.java
+14
-19
AspectLogResult.java
...n/java/com/yanzuoguang/cloud/aop/log/AspectLogResult.java
+4
-6
AspectLogStart.java
...in/java/com/yanzuoguang/cloud/aop/log/AspectLogStart.java
+10
-12
LogCountTime.java
...il-db/src/main/java/com/yanzuoguang/log/LogCountTime.java
+13
-10
No files found.
yzg-util-base/src/main/java/com/yanzuoguang/util/vo/LogVo.java
View file @
805755e1
...
...
@@ -11,62 +11,57 @@ import io.swagger.annotations.ApiModelProperty;
@ApiModel
(
value
=
"日志对象"
)
public
class
LogVo
extends
BaseVo
{
private
static
final
long
serialVersionUID
=
-
8629960247077620458L
;
/**
* 日志id
*/
@ApiModelProperty
(
value
=
"日志Id"
,
required
=
true
,
example
=
"{{$uuid}}"
)
private
volatile
String
logId
;
private
String
logId
;
/**
* 工程实例名
*/
@ApiModelProperty
(
value
=
"项目名称"
,
required
=
true
,
example
=
"MQ|WEB|FEIGN"
)
private
volatile
String
actionKey
;
private
String
actionKey
;
/**
* 请求接口地址
*/
@ApiModelProperty
(
value
=
"接口地址"
,
required
=
true
,
example
=
"tbd-order/order/save"
)
private
volatile
String
actionSubKey
;
private
String
actionSubKey
;
/**
* 请求内容
*/
@ApiModelProperty
(
value
=
"请求内容"
,
required
=
true
,
example
=
"{}"
)
private
volatile
String
content
;
private
String
content
;
/**
* 执行后的请求内容
*/
@ApiModelProperty
(
value
=
"执行后的请求内容,仅仅在内容有变化时写入"
,
required
=
true
,
example
=
"{}"
)
private
volatile
String
contentTo
;
private
String
contentTo
;
/**
* 返回参数
*/
@ApiModelProperty
(
value
=
"返回结果"
,
required
=
true
,
example
=
"{}"
)
private
volatile
String
result
;
private
String
result
;
/**
* 接口处理状态,是否有异常
*/
@ApiModelProperty
(
value
=
"执行状态"
,
notes
=
"0表示成功,其他状态表示失败"
,
required
=
true
,
example
=
"0"
)
private
volatile
String
status
;
private
String
status
;
/**
* 使用时间
*/
@ApiModelProperty
(
value
=
"执行耗时"
,
notes
=
"单位(毫秒)"
,
required
=
true
,
example
=
"20"
)
private
volatile
int
useTime
;
private
int
useTime
;
/**
* 创建时间
*/
@ApiModelProperty
(
value
=
"创建时间"
,
notes
=
"单位(毫秒)"
,
required
=
false
,
example
=
"1987-11-24 23:15:18"
)
private
volatile
String
createDate
;
private
String
createDate
;
/**
* 开始时间
*/
@ApiModelProperty
(
value
=
"开始时间"
,
notes
=
"单位(毫秒)"
)
private
long
start
=
System
.
currentTimeMillis
();
public
String
getLogId
()
{
return
logId
;
...
...
@@ -140,4 +135,11 @@ public class LogVo extends BaseVo {
this
.
createDate
=
createDate
;
}
public
long
getStart
()
{
return
start
;
}
public
void
setStart
(
long
start
)
{
this
.
start
=
start
;
}
}
yzg-util-cloud/src/main/java/com/yanzuoguang/cloud/aop/AspectFeign.java
View file @
805755e1
package
com
.
yanzuoguang
.
cloud
.
aop
;
import
com.yanzuoguang.cloud.aop.log.AspectLogResult
;
import
com.yanzuoguang.cloud.aop.log.AspectLogStart
;
import
com.yanzuoguang.util.exception.CodeException
;
import
com.yanzuoguang.util.exception.ExceptionHelper
;
import
com.yanzuoguang.util.vo.LogVo
;
...
...
@@ -52,12 +54,9 @@ public class AspectFeign {
Class
<?>
declaringType
=
joinPoint
.
getSignature
().
getDeclaringType
();
String
url
=
aspectLogUrl
.
getWebMethodUrl
(
joinPoint
);
Object
requestBody
=
aspectLogBody
.
getRequestBody
(
joinPoint
);
boolean
clear
=
aspectLogStart
.
requestLogInit
();
LogVo
log
=
new
LogVo
();
aspectLogStart
.
requestLog
(
declaringType
,
TAG
,
url
,
requestBody
,
log
,
clear
);
long
start
=
System
.
currentTimeMillis
();
boolean
clear
=
aspectLogStart
.
requestLogInit
();
LogVo
log
=
aspectLogStart
.
requestLog
(
declaringType
,
TAG
,
url
,
requestBody
,
clear
);
Object
result
=
null
;
Exception
ex
=
null
;
...
...
@@ -77,7 +76,7 @@ public class AspectFeign {
ex
=
e
;
throw
e
;
}
finally
{
aspectLogResult
.
responseLog
(
declaringType
,
TAG
,
url
,
clear
,
start
,
requestBody
,
result
,
ex
,
log
);
aspectLogResult
.
responseLog
(
declaringType
,
TAG
,
url
,
clear
,
requestBody
,
result
,
ex
,
log
);
}
}
...
...
yzg-util-cloud/src/main/java/com/yanzuoguang/cloud/aop/AspectMq.java
View file @
805755e1
package
com
.
yanzuoguang
.
cloud
.
aop
;
import
com.yanzuoguang.cloud.aop.log.AspectLogResult
;
import
com.yanzuoguang.cloud.aop.log.AspectLogStart
;
import
com.yanzuoguang.mq.service.MessageLogService
;
import
com.yanzuoguang.util.exception.ExceptionHelper
;
import
com.yanzuoguang.util.vo.LogVo
;
...
...
@@ -11,10 +13,9 @@ import org.springframework.amqp.core.Message;
import
org.springframework.stereotype.Component
;
/**
*
LogsAspect(接口请求日志切面)
*
MQ处理切面
*
* @author: Kang
* @time: 2018年04月25日 11:43
* @author 颜佐光
*/
@Aspect
@Component
...
...
@@ -61,11 +62,9 @@ public class AspectMq {
String
url
=
aspectLogUrl
.
getMessageUrl
(
joinPoint
,
message
);
String
requestBody
=
aspectLogBody
.
getRequestBody
(
message
);
LogVo
log
=
new
LogVo
();
boolean
clear
=
true
;
aspectLogStart
.
requestLogInit
();
aspectLogStart
.
requestLog
(
declaringType
,
TAG
,
url
,
requestBody
,
log
,
clear
);
long
start
=
System
.
currentTimeMillis
();
LogVo
log
=
aspectLogStart
.
requestLog
(
declaringType
,
TAG
,
url
,
requestBody
,
clear
);
Object
result
=
null
;
Exception
ex
=
null
;
try
{
...
...
@@ -78,7 +77,7 @@ public class AspectMq {
throw
e
;
}
finally
{
logService
.
logCurrentRemove
();
aspectLogResult
.
responseLog
(
declaringType
,
TAG
,
url
,
clear
,
start
,
requestBody
,
result
,
ex
,
log
);
aspectLogResult
.
responseLog
(
declaringType
,
TAG
,
url
,
clear
,
requestBody
,
result
,
ex
,
log
);
}
}
...
...
yzg-util-cloud/src/main/java/com/yanzuoguang/cloud/aop/AspectWeb.java
View file @
805755e1
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.token.TokenHelper
;
import
com.yanzuoguang.util.exception.ExceptionHelper
;
...
...
@@ -22,10 +24,9 @@ import java.lang.reflect.Type;
import
java.util.Optional
;
/**
*
LogsAspect(接口请求日志切面)
*
接口请求日志切面
*
* @author: Kang
* @time: 2018年04月25日 11:43
* @author 颜佐光
*/
@Aspect
@Component
...
...
@@ -74,7 +75,7 @@ public class AspectWeb {
*/
@Around
(
value
=
"webAspect()"
)
public
Object
requestWebAround
(
ProceedingJoinPoint
joinPoint
)
throws
Throwable
{
Class
declaringType
=
joinPoint
.
getSignature
().
getDeclaringType
();
Class
<?>
declaringType
=
joinPoint
.
getSignature
().
getDeclaringType
();
String
url
=
aspectLogUrl
.
getWebMethodUrl
(
joinPoint
);
// 判断是否网关
boolean
isGateWay
=
cloudConfig
.
isGateWay
();
...
...
@@ -89,9 +90,7 @@ public class AspectWeb {
}
Object
requestBody
=
aspectLogBody
.
getRequestBody
(
joinPoint
);
boolean
clear
=
aspectLogStart
.
requestLogInit
();
LogVo
log
=
new
LogVo
();
aspectLogStart
.
requestLog
(
declaringType
,
TAG
,
url
,
requestBody
,
log
,
clear
);
long
start
=
System
.
currentTimeMillis
();
LogVo
log
=
aspectLogStart
.
requestLog
(
declaringType
,
TAG
,
url
,
requestBody
,
clear
);
Exception
ex
=
null
;
boolean
isInit
=
false
;
...
...
@@ -103,7 +102,6 @@ public class AspectWeb {
for
(
Object
arg
:
joinPoint
.
getArgs
())
{
webAspectInit
.
init
(
arg
);
}
// Log.info(declaringType, "初始化登陆");
result
=
executeMethod
(
joinPoint
);
return
result
;
}
catch
(
Exception
e
)
{
...
...
@@ -125,30 +123,27 @@ public class AspectWeb {
if
(
isInit
)
{
TokenHelper
.
remove
();
}
aspectLogResult
.
responseLog
(
declaringType
,
TAG
,
url
,
clear
,
start
,
requestBody
,
result
,
ex
,
log
);
aspectLogResult
.
responseLog
(
declaringType
,
TAG
,
url
,
clear
,
requestBody
,
result
,
ex
,
log
);
}
}
/**
* 获取返回的
至
类型
* 获取返回的
值
类型
*
* @param joinPoint
* @return
* @throws NoSuchMethodException
* @param joinPoint 执行方法
* @return 类型
*/
private
Type
getReturnType
(
ProceedingJoinPoint
joinPoint
)
{
Method
m
=
getMethod
(
joinPoint
);
Type
t
=
m
.
getAnnotatedReturnType
().
getType
();
return
t
;
return
m
.
getAnnotatedReturnType
().
getType
();
}
/**
* 获取返回的至类型
*
* @param joinPoint
* @return
* @throws NoSuchMethodException
* @param joinPoint 执行方法
* @return 方法
*/
private
Method
getMethod
(
ProceedingJoinPoint
joinPoint
)
{
//获取返回值类型
...
...
@@ -163,7 +158,7 @@ public class AspectWeb {
*
* @param joinPoint 需要执行的方法
* @return 返回结果
* @throws Throwable
* @throws Throwable
异常信息
*/
private
Object
executeMethod
(
ProceedingJoinPoint
joinPoint
)
throws
Throwable
{
return
joinPoint
.
proceed
();
...
...
yzg-util-cloud/src/main/java/com/yanzuoguang/cloud/aop/AspectLogResult.java
→
yzg-util-cloud/src/main/java/com/yanzuoguang/cloud/aop/
log/
AspectLogResult.java
View file @
805755e1
package
com
.
yanzuoguang
.
cloud
.
aop
;
package
com
.
yanzuoguang
.
cloud
.
aop
.
log
;
import
com.yanzuoguang.cloud.CloudConfig
;
import
com.yanzuoguang.cloud.aop.
log.LogLocal
;
import
com.yanzuoguang.cloud.aop.
AspectLogBody
;
import
com.yanzuoguang.log.LogCountTime
;
import
com.yanzuoguang.util.exception.ExceptionHelper
;
import
com.yanzuoguang.util.helper.JsonHelper
;
...
...
@@ -41,17 +41,15 @@ public class AspectLogResult {
* @param tag 标签名称
* @param url 地址
* @param logFlag 请求日志
* @param start 开始时间
* @param requestBody 请求内容
* @param result 结果
* @param resultEx 异常结果
* @param log 内容
*/
// @Async
public
void
responseLog
(
Class
<?>
cls
,
String
tag
,
String
url
,
boolean
logFlag
,
long
start
,
Object
requestBody
,
Object
result
,
Exception
resultEx
,
LogVo
log
)
{
public
void
responseLog
(
Class
<?>
cls
,
String
tag
,
String
url
,
boolean
logFlag
,
Object
requestBody
,
Object
result
,
Exception
resultEx
,
LogVo
log
)
{
// 执行时间
long
time
=
System
.
currentTimeMillis
()
-
start
;
long
time
=
System
.
currentTimeMillis
()
-
log
.
getStart
()
;
// 全路径
String
fullUrl
=
String
.
format
(
"%s:%s"
,
tag
,
url
);
...
...
yzg-util-cloud/src/main/java/com/yanzuoguang/cloud/aop/AspectLogStart.java
→
yzg-util-cloud/src/main/java/com/yanzuoguang/cloud/aop/
log/
AspectLogStart.java
View file @
805755e1
package
com
.
yanzuoguang
.
cloud
.
aop
;
package
com
.
yanzuoguang
.
cloud
.
aop
.
log
;
import
com.yanzuoguang.cloud.CloudConfig
;
import
com.yanzuoguang.cloud.aop.
log.LogLocal
;
import
com.yanzuoguang.cloud.aop.
AspectLogBody
;
import
com.yanzuoguang.log.LogCountTime
;
import
com.yanzuoguang.util.exception.ExceptionHelper
;
import
com.yanzuoguang.util.log.Log
;
...
...
@@ -31,15 +31,14 @@ public class AspectLogStart {
/**
* 记录请求日志
*
* @param tag
* @param url
* @param requestBody
* @param log
* @param logFlag
* @return
* @param tag 标记
* @param url 地址
* @param requestBody 请求内容
* @param logFlag 是否记录日志
*/
// @Async
public
void
requestLog
(
Class
<?>
cls
,
String
tag
,
String
url
,
Object
requestBody
,
LogVo
log
,
boolean
logFlag
)
{
public
LogVo
requestLog
(
Class
<?>
cls
,
String
tag
,
String
url
,
Object
requestBody
,
boolean
logFlag
)
{
LogVo
log
=
new
LogVo
();
try
{
String
fullUrl
=
String
.
format
(
"%s:%s"
,
tag
,
url
);
logCountTime
.
start
(
fullUrl
);
...
...
@@ -55,6 +54,7 @@ public class AspectLogStart {
}
catch
(
Exception
ex
)
{
ExceptionHelper
.
PrintError
(
AspectLogStart
.
class
,
ex
);
}
return
log
;
}
/**
...
...
@@ -62,13 +62,11 @@ public class AspectLogStart {
*
* @return 返回日志是否清空
*/
p
rotected
boolean
requestLogInit
()
{
p
ublic
boolean
requestLogInit
()
{
boolean
clear
=
Log
.
threadCurrent
()
==
null
;
if
(
clear
)
{
Log
.
threadBegin
();
}
return
clear
;
}
}
yzg-util-db/src/main/java/com/yanzuoguang/log/LogCountTime.java
View file @
805755e1
...
...
@@ -3,7 +3,6 @@ package com.yanzuoguang.log;
import
com.yanzuoguang.util.cache.MemoryCache
;
import
com.yanzuoguang.util.helper.DateHelper
;
import
com.yanzuoguang.util.helper.StringHelper
;
import
org.springframework.scheduling.annotation.Async
;
import
org.springframework.stereotype.Component
;
/**
...
...
@@ -32,7 +31,7 @@ public class LogCountTime {
/**
* 获取日志结果
*
* @return
* @return
今日日志结果
*/
public
LogCountResult
getTodayResult
()
{
return
new
LogCountResult
(
todayTime
,
todayMemoryCache
.
getValues
());
...
...
@@ -55,28 +54,32 @@ public class LogCountTime {
/**
* 获取缓存对象
*
* @param url 地址
* @param url
From
地址
* @return 缓存对象
*/
private
LogUrlCountVo
getCount
(
String
url
)
{
private
LogUrlCountVo
getCount
(
String
url
From
)
{
// 初始化日期
initToday
();
if
(
url
.
contains
(
URL_PARA_START
))
{
url
=
url
.
substring
(
0
,
url
.
indexOf
(
URL_PARA_START
));
String
key
;
if
(
urlFrom
.
contains
(
URL_PARA_START
))
{
key
=
urlFrom
.
substring
(
0
,
urlFrom
.
indexOf
(
URL_PARA_START
));
}
else
{
key
=
urlFrom
;
}
// 缓存中获取对象
LogUrlCountVo
ret
=
todayMemoryCache
.
get
(
url
);
LogUrlCountVo
ret
=
todayMemoryCache
.
get
(
key
);
if
(
ret
!=
null
)
{
return
ret
;
}
// 缓存中不存在则创建对象
synchronized
(
todayMemoryCache
)
{
ret
=
todayMemoryCache
.
get
(
url
);
ret
=
todayMemoryCache
.
get
(
key
);
if
(
ret
!=
null
)
{
return
ret
;
}
ret
=
new
LogUrlCountVo
(
url
);
todayMemoryCache
.
put
(
url
,
ret
);
ret
=
new
LogUrlCountVo
(
key
);
todayMemoryCache
.
put
(
key
,
ret
);
return
ret
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment