Asynchronous execution aspect using AspectJ

2019-06-19 02:58发布

问题:

Here is the problem -

I was using @Async provided by Spring to execute some methods asynchronously. However, because it is proxy based, it wouldn't work if the method is called from within the same class. I do need my async methods to be called from within the same class.

I know if I use AspectJ instead of Spring AOP, I will be able to do that.

So my question is, is there a way to use Spring's @Async and load time weave it? Or, is there an AspectJ based async execution aspect already written that I can use, instead of writing my own?

回答1:

Yes, annotate a concrete class' method with @Async, put spring-aspects JAR (which contains the async aspect) into your classpath, use <task:annotation-driven mode="aspectj" /> in your Spring config and apply either compile-time or load-time weaving, referencing spring-aspects as an aspect library.



回答2:

One thing you can do is toss together a bean whose only purpose is to run things asynchronously and pass the work to it inside the method. This may not make the API as pretty if you like to put @Async on your interfaces or whatever, but it gets the job done.

public interface AsyncExecutor {

  void runAsynchronously(Runnable r);
}

public class SpringAOPAsyncExecutor implements AsyncExecutor {

  @Async
  @Override
  public void runAsynchronously(Runnable r) {
    r.run();
  }
}

public MyService implements SomeInterface {

  @Autowired
  private AsyncExecutor springAOPAsyncExecutor;

  public ObjectHolder calculateAsychronously() {
    final ObjectHolder resultHolder = new ObjectHolder();
    springAOPAsyncExecutor.runAsynchronously ( new Runnable() {
      public void run() {
        //do some calculatin
        resultHolder.setValue(whatevs);
      }
    });
    return resultHolder;
  }
}