public class TestAOP { public static void main(String[] args) { ApplicationContext ctx = new ClassPathXmlApplicationContext("aop/config/aop.xml"); Service service = (Service) ctx.getBean("customerService"); service.register(); service.modify(); String name = service.selectMemberNameById("111"); System.out.println(name); } }
<aop:aspect id="loggerJp" ref="logger"> <aop:before pointcut="execution(public * aop..*Service.select*(..))" method="logJp"/><!-- pointcut을 직접 지정할 수도 있다. --> </aop:aspect> </aop:config>
</beans>
package aop.core;
public class CustomerService implements Service{ public void register(){ System.out.println("고객 등록 처리"); } public void modify(){ System.out.println("고객 정보 수정 처리"); } public String selectMemberNameById(String id) { System.out.println(id+"의 이름을 조회합니다."); return "홍길동"; } }
package aop.core;
public interface Service {
public abstract void register();
public abstract void modify();
public String selectMemberNameById(String id); }
* 결과
------------------------------- 로그 처리 ------------------------------- 고객 등록 처리 ------------------------------- 로그 처리 ------------------------------- 고객 정보 수정 처리 타겟 객체 이름 : aop.core.CustomerService -----------인수값------------- 111 sig.getName() : selectMemberNameById sig.toShortString() : Service.selectMemberNameById(..) sig.toLongString() : public abstract java.lang.String aop.core.Service.selectMemberNameById(java.lang.String) ------------------------------- 로그 처리 ------------------------------- 111의 이름을 조회합니다. 홍길동