목표 : Spring에서 AOP를 사용할 수 있다. 앞서, AOP가 무엇인지에 대해 알아보았다. 이제 Spring에서 AOP를 어떻게 쓸 수 있을지 알아보자. Aspect Oriented Programming with Spring 다음 링크에서 Spring에서 AOP에 대한 적용은 다음과 같이 할 수 있다고 한다. Spring provides simple and powerful ways of writing custom aspects by using either a schema-based approach or the @AspectJ annotation style. Both of these styles offer fully typed advice and use of the AspectJ pointcut la..