I confugured pointcuts with @annotation rule.
I've got an annotation @Log and mark my beans with it.
My AbstractDao bean uses connectionPool this way:
@Autowired
private DataSource...
Type: Posts; User: omickron; Keyword(s):
I confugured pointcuts with @annotation rule.
I've got an annotation @Log and mark my beans with it.
My AbstractDao bean uses connectionPool this way:
@Autowired
private DataSource...
We've got a Spring 3.1 web-application using spring-aop with cglib library.
spring.xml:
<context:annotation-config/>
<aop:aspectj-autoproxy proxy-target-class="true"/>
That means...