摘要: Using dynamic pointcuts: Spring provides one built-in dynamic pointcut: ControlFlowPointcut. javax.servlet.http.HttpServlet MyService servletA... 阅读全文
posted @ 2007-11-04 18:18 IT Person 阅读(195) 评论(0) 推荐(0)
摘要: Regular expression pointcuts: when you are using the RegexpMethodPointcut, you need to include the Jakarta Commons ORO 3 library in your application. .*get.+By.+ com.springinaction.chapter... 阅读全文
posted @ 2007-11-04 15:05 IT Person 阅读(153) 评论(0) 推荐(0)
摘要: Around advice: MethodInterceptor provides the ability to do both in one advice object. the MethodInterceptor implementation controls whether the target method is actually invoked. Throws advice: Throw... 阅读全文
posted @ 2007-11-04 15:04 IT Person 阅读(253) 评论(0) 推荐(0)
摘要: Aspect: An aspect is the cross-cutting functionality you are implementing.The most common (albeit simple) example of an aspect is logging. Joinpoint: A joinpoint is a point in the execution of the app... 阅读全文
posted @ 2007-11-04 15:02 IT Person 阅读(260) 评论(0) 推荐(0)