Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道当我进行 @async 调用并在 Future 类型字段中检索值时,线程在 spring 中会发生什么。同时线程是否空闲?
在此先感谢,冈萨。
该线程在您调用该@Async方法后立即启动。您可以使用Future实例检查当前状态 - isDone()。或者您可以调用get()which 将阻塞直到线程完成。
@Async
Future
isDone()
get()