Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <aop:config>
  2. <aop:aspect ref="audience">
  3.  
  4. <aop:pointcut
  5. id="performance"
  6. expression="execution(** concert.Performance.perform(..))" />
  7.  
  8. <!-- Declarar around advice -->
  9. <aop:around
  10. pointcut-ref="performance"
  11. method="watchPerformance"/>
  12.  
  13. </aop:aspect>
  14. </aop:config>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement