问题分析: - Service方法同时使用@Async和CompletableFuture.supplyAsync - Controller调用future.get()会阻塞等待 - 这不是真正的异步 修复方案: - 移除@Async注解 - Service方法使用CompletableFuture.runAsync()异步执行doImport - Service方法改为void返回类型,立即返回 - Controller不调用future.get(),自己构建响应 - 实现真正的异步非阻塞导入 Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>