Spring @Async Not Working

后端 未结 11 741
北荒
北荒 2020-12-08 06:30

An @Async method in a @Service-annotated class is not being called asynchronously - it\'s blocking the thread.

I\'ve got

11条回答
  •  误落风尘
    2020-12-08 07:12

    1. Try adding proxy-target-class="true" to all <*:annotation-driven/> elements that support this attribute.
    2. Check if your method annotated with @Async is public.

提交回复
热议问题