本文主要是介绍AOP切入点表达式基本格式,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
版权声明
- 本文原创作者:谷哥的小弟
- 作者博客地址:http://blog.csdn.net/lfdfhl
官方地址
https://docs.spring.io/spring-framework/reference/core/aop/ataspectj/pointcuts.html
AOP切入点表达式基本格式如下:
execution(modifiers-pattern?ret-type-patterndeclaring-type-pattern?name-pattern(param-pattern)throws-pattern?)
其中,问号表示它之前的模式是可选的,即可以有也可以没有。
这篇关于AOP切入点表达式基本格式的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!