I\'m having trouble with a pointcut definition in Spring (version 2.5.6). I\'m trying to intercept all method calls to a class, except for a given method (someMethod in the exam
This should work (spring AOP reference):
pointcut="execution(* x.y.z.ClassName.*(..)) && !execution(* x.y.x.ClassName.someMethod(..))"