@Before("execution(* com.sina.finance.guarantee.core.controller..*.*Controller.*(..)) && !execution(* com.sina.finance.guarantee.core.controller..*.*Controller.*Excel(..))")
    public void before(JoinPoint joinPoint) {
        ILoggerHandler.enter(joinPoint.getArgs());
    }
以上表达式为:对Controller中的接口方法(排除Excel相关)添加切面。

相关文章:

  • 2021-10-14
  • 2021-06-06
  • 2022-12-23
  • 2022-12-23
  • 2021-08-10
  • 2021-08-26
  • 2022-12-23
猜你喜欢
  • 2021-09-02
  • 2021-06-26
  • 2021-05-01
  • 2021-06-21
  • 2022-02-27
相关资源
相似解决方案