码迷,mamicode.com
首页 > 编程语言 > 详细

spring boot aop 报错

时间:2018-12-22 01:16:57      阅读:261      评论:0      收藏:0      [点我收藏+]

标签:tps   malformed   tin   execution   name   detail   control   form   color   

1、控制台报错

Pointcut is not well-formed: expecting ‘name pattern‘ at character position 33 execution(com.stu.controller.*.*(..))

2、eclipse提示

Pointcut is malformed: Pointcut is not well-formed: expecting ‘name pattern‘ at character position 33 execution(com.stu.controller.*.*(..)) 

上述两个错误是由路径配置不对造成的。

本来目的是要拦截 controller 包下的所有类的方法,配置为 @Before("execution(com.stu.controller.*(..))")、@Before("execution(com.stu.controller.*.*(..))"),结果报错,改为@Before("execution(* com.stu.controller.*.*(..))")即可。

“.*.*”,第一个“*”表示 controller 包下面的 controller 类,第二个“*”表示方法,所以第一次的配置不对,第二次的配置少了“*”,至于3个“*”中最前面的第一个“*”是什么意思,暂时还未明白。

参考文章:https://blog.csdn.net/yangxiaovip/article/details/31797475

spring boot aop 报错

标签:tps   malformed   tin   execution   name   detail   control   form   color   

原文地址:https://www.cnblogs.com/jingyi17/p/10159085.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!