spring笔记

发布时间 2023-11-23 10:09:54作者: heysong

 

Async 

First, let’s go over the rules. @Async has two limitations:

  • It must be applied to public methods only.
  • Self-invocation — calling the async method from within the same class — won’t work.

https://www.baeldung.com/spring-async