the AOP docs in the Spring reference say that you can reference XSD-based pointcuts via XML ids, yet if I define two pointcuts, and one references the other via the id, i get an IllegalArgumentException that it cannot find the referenced pointcut (being the mainpoincut).
is this still possible? I must use JDK 1.4 for now, so annotations are not possible.
<aopointcut id="mainpointcut"
expression="target(interface) and
execution(* handleRequest(..))"/>
<aopointcut id="pointcutargs"
expression="mainpointcut() and args(req)"/>
Thanks!


ointcut id="mainpointcut"
Reply With Quote