Kathleen Angeles wrote:Try this below:
Because there will be some methods not exposed through interfaces, use CGLIB-based proxies.
-k
[SpringSource Certified Spring Professional - Practice Tests]
I think you have an extraneous "*" in there.
Mark
The only required parts on t apointcut expressions is
Return Type, method, and parenthesis. For the parenthesis of parameters, nothing inside specifically means the method never takes any parameters. Hence your (..) to mean 0 or more parameters.
But returnType and method are the only required parts, and therefore the only two that need "*"
so
"execution(* *(..))" would work.
Personally though I would go a bit more descriptive with
"execution(* *..*.*(..))"
Mark