Asynchronous execution aspect using AspectJ

2019-06-19 02:48发布

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?

2条回答
够拽才男人
2楼-- · 2019-06-19 02:54

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;
  }
}
查看更多
Luminary・发光体
3楼-- · 2019-06-19 02:58

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.

查看更多
登录 后发表回答