|
|
|
|
@ -17,8 +17,12 @@ import org.aspectj.lang.annotation.Before;
|
|
|
|
|
@Aspect
|
|
|
|
|
public abstract class AspectServiceBean extends AbstractServiceBean {
|
|
|
|
|
private static final String
|
|
|
|
|
SVC_POINT = "execution(* *..*ServiceBean.*(..))",
|
|
|
|
|
CNTR_POINT = "execution(* *..*Controller.*(..))";
|
|
|
|
|
/*
|
|
|
|
|
SVC_POINT = "execution(* cokr.xit..service.bean.*ServiceBean.*(..))",
|
|
|
|
|
CNTR_POINT = "execution(* cokr.xit..*Controller.*(..))";
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**컨트롤러의 메소드 앞에 실행된다.
|
|
|
|
|
* @param joinPoint JoinPoint
|
|
|
|
|
|