AOP验证,@Pointcut拦截了登录登出方法?
来源:12-8 AOP实现身份验证
慕丝5178657
2018-10-30
复制了廖师兄的代码,只是改了自己项目的包名。发现SellerUserController还是被拦截到了
@Pointcut("execution(public * com.shy.wechatsell.controller.Seller*.*(..))" +
"&& !execution(public * com.shy.wechatsell.controller.SellerUserController.*(..))")
然后尝试了其他写法
@Pointcut("within(com.shy.wechatsell.controller.*) && !bean(sellerUserController)")
还是一样给我拦截了。怎么回事?
Spring Boot 2.0.5 RELEASE.
不是版本原因吧,表达式这种东西不会变吧,囧
写回答
1回答
-
廖师兄
2018-11-01
我看到一个一样的问题,是不是已经解决了?
00
相似问题