April 05
Prof. Ismael H. F. Santos -  ismael@tecgraf.puc-rio.br                                                          2
Spring AOP – Example
n<bean id="AOPTest"
nclass="org.springframework.aop.framework.ProxyFactoryBean">
n  <property name="proxyInterfaces">
n    <value>swe645.ioc.WeatherService</value>
n  </property>
n  <property name="target" ref ="weatherService"/>
n  <property name="interceptorNames">
n    <list>
n      <value> myAdvisor1</value>
n      <value> myAdvisor2</value>
n    </list>
n  </property>
n</bean>