here i am using a point cut annotation as follows:
@Pointcut("Execution(* com.luv2code.springdemo.controller.*.*(..))")
private void forControllerPackage() {
}
it giving me an exception which is as:
Pointcut is not well-formed: expecting ')' at character position 12
Execution(* com.luv2code.springdemo.dao.*.*(..))
^^^
I have just started learning AOP any suggestion or help is going to help a lot thanks.