Spring,MyBatis 실무 과정 자료] Spring AOP Sample
Spring,MyBatis 실무 과정 자료] Spring AOP Sample
Spring,MyBatis 실무 과정 자료] Spring AOP Sample
Spring,MyBatis 실무 과정 자료]
실무개발자를위한 실무교육 전문교육센터학원
www.oraclejava.co.kr에 오시면 보다 다양한 강좌를 보실 수 있습니다.
Spring AOP Sample
<bean id="helloWorldBeanImpl" class="com.spring.test.HelloWorldBeanImpl">
<property name="name">
<value>오라클자바</value>
</property>
</bean>
<bean id="helloworld" class="org.springframework.aop.framework.ProxyFactoryBean">
<property name="proxyInterfaces">
<value>com.spring.test.IHelloWorldBean</value>
</property>
<property name="target">
<ref local="helloWorldBeanImpl" />
</property>
<property name="interceptorNames">
<value>regexpAdvisor</value>
</property>
</bean> <bean id="regexpAdvisor" class="org.springframework.aop.support.RegexpMethodPointcutAdvisor">
<property name="advice">
<ref local="myMethodInterceptor"/>
</property>
<property name="patterns">
<list>
<value>.*.world*</value>
</list>
</property>
</bean>
<bean id="myMethodInterceptor" class="com.spring.test.MyMethodInterceptor"/>