公共模块 aop,扫描所有模块的 controller 接口,切点如何配置?
execution(* com.hao.mimi.controller...(..)))"
类似这种只能扫描自己的模块
1
BQsummer 2021-10-20 10:16:19 +08:00
@Pointcut("within(@org.springframework.web.bind.annotation.RestController *) || within(@org.springframework.stereotype.Controller *)")
|
3
icelo 2021-10-20 13:46:46 +08:00 via iPhone
我觉得用自定义注解配置会很好
|
4
icelo 2021-10-20 13:47:24 +08:00 via iPhone
如果是所有的当我没说
|
6
wolfie 2021-10-20 18:05:37 +08:00
|