修复异常处理不打印
This commit is contained in:
parent
a5417dda3e
commit
1593e7f3dc
@ -53,15 +53,14 @@ public class LogAspect {
|
||||
|
||||
//环绕通知,环绕增强,相当于MethodInterceptor
|
||||
@Around("webLog()")
|
||||
public Object arround(ProceedingJoinPoint pjp) {
|
||||
public Object arround(ProceedingJoinPoint pjp) throws Throwable{
|
||||
System.out.println("方法环绕start.....");
|
||||
try {
|
||||
Object o = pjp.proceed();
|
||||
System.out.println("方法环绕proceed,结果是 :" + o);
|
||||
return o;
|
||||
} catch (Throwable e) {
|
||||
e.printStackTrace();
|
||||
return null;
|
||||
throw e;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user