我的筹码是spring-boot
和myBatis
。
我将异步执行一些代码,更确切地说:
@RestController
class Controller
{
@PutMapping("/endpoint")
Response foo ()
{
doSomeStuffAsynchronously(); //execute in new thread
return new Response(); // immediately
}
}
我该怎么办?
修改
我不需要回调,但是看看如何做到这一点会很高兴。
学习使用界面
我知道什么是界面,但我无法看到它有何帮助。你能帮帮我吗?