@Pointcut("execution(* com.gorakgarak..*(java.lang.String))")
private void allPointCut(){
}
@Before(value="allPointcut()")
public void beforeLogging(JoinPoint joinPoint){
System.out.println(joinPoint.getSignature().getName() + "메소드 호출 전 :" +
joinPoint.getArgs()[0]);
}
'웹 & 프레임워크' 카테고리의 다른 글
Jsoup 문서를 다 못불러올때. (0) | 2014.05.29 |
---|---|
proxy joinPoint 확장 (0) | 2014.05.25 |
공통로직 @Aspect위에 @Order를 넣어서 순서를 줘보자 (0) | 2014.05.25 |
@Aspect로 매개변수 체크를 해보자 (0) | 2014.05.25 |
직관적이고 간단한 Spring MVC구조 (0) | 2014.05.25 |