In Spring, I want an expression that matches a method with specific arguments.
Right now I have this expression
execution(* delete(..))
But I want to match specific arguments since there are 4 delete methods in the particular class I am interested in.
I want something like this
execution(* delete(com.xyz.A, com.xyz.B,java.lang.String )
This is what I wrote and is not working. Am I missing something ?