异步执行代码段(在线启动线程)

时间:2017-07-05 20:58:51

标签: java multithreading asynchronous spring-boot

我的筹码是spring-bootmyBatis。 我将异步执行一些代码,更确切地说:

@RestController
class Controller 
{
   @PutMapping("/endpoint")
   Response foo () 
   {
      doSomeStuffAsynchronously(); //execute in new thread
      return new Response(); // immediately 
   }
}

我该怎么办?

修改
我不需要回调,但是看看如何做到这一点会很高兴。

  

学习使用界面

我知道什么是界面,但我无法看到它有何帮助。你能帮帮我吗?

0 个答案:

没有答案