|
@@ -7,6 +7,7 @@ import java.util.Map;
|
7
|
7
|
import javax.servlet.http.HttpServletRequest;
|
8
|
8
|
|
9
|
9
|
import org.aspectj.lang.JoinPoint;
|
|
10
|
+import org.aspectj.lang.annotation.After;
|
10
|
11
|
import org.aspectj.lang.annotation.Aspect;
|
11
|
12
|
import org.aspectj.lang.annotation.Before;
|
12
|
13
|
import org.aspectj.lang.annotation.Pointcut;
|
|
@@ -52,7 +53,7 @@ public class ReportCustomerAspect extends BaseController {
|
52
|
53
|
|
53
|
54
|
}
|
54
|
55
|
|
55
|
|
- @Before("reportCustomer()")
|
|
56
|
+ @After("reportCustomer()")
|
56
|
57
|
public ResponseBean doAround(JoinPoint proceedingJoinPoint) throws Throwable {
|
57
|
58
|
ResponseBean responseBean = new ResponseBean();
|
58
|
59
|
try{
|