Spring AOP - 没有xml配置就无法工作

时间:2018-03-26 12:19:32

标签: java spring-boot spring-aop

我的意图是在使用get message方法之前运行方面。我不想使用xml配置,所以我添加(希望)必要的注释。但是,当我运行我的应用程序时,方面没有工作,也没有任何事情发生。你能解释一下为什么吗?

服务

public interface Service {
  void getMessage();
}

服务实施

import org.springframework.stereotype.Component;

@Service
public class ServiceImpl implements Service {
  public void getMessage() {
    System.out.println("Hello world");
  }
}

方面

import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;

@Aspect
public class LoggingAspect {

    @Before("execution(* com.example.aop.Service.getMessage())")
    public void logBefore(JoinPoint joinPoint) {
        System.out.println("AOP is working!!!");
    }
}

生成

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.EnableAspectJAutoProxy;

@SpringBootApplication
@EnableAspectJAutoProxy(proxyTargetClass=true)
@ComponentScan("com.example")
public class AopApplication {

    public static void main(String[] args) {
        final ConfigurableApplicationContext run = SpringApplication.run(AopApplication.class, args);
        final Service bean = run.getBean(ServiceImpl.class);
        bean.getMessage();
    }
}

输出Hello world

2 个答案:

答案 0 :(得分:1)

您可能需要在@Component课程中添加LoggingAspect注释。

答案 1 :(得分:0)

我相信切入点表达式语法应该是这样的:

@Before("execution(void com.aop.service.Service+.getMessage(..))")

+用于将切入点应用于子类型(您也可以将void替换为*