I am looking for a solution for the problem where I can configure the pointcut expressions dynamically by reading from a properties file or database.
for example: @Around("execution(* com.example.updateUser(..))")
in above example, we have hardcoded the expression. I am looking for the solution where I can read
execution(* com.example.updateUser(..)) and then use it in @Around annotation.
I did not come across similar problem on web. Any solution for such problem is highly appreciated. Thank you!!