1.

How To Declare A Pointcut In Spring Aop?

Answer»

FIND the below code SNIPPET.

@Pointcut("EXECUTION(* save(..))")

PRIVATE void dataSave {}

Find the below code snippet.

@Pointcut("execution(* save(..))")

private void dataSave {}



Discussion

No Comment Found