我需要在spring boot rest中发送电子邮件/短信/事件作为后台异步任务。
我的REST控制器
@RestController
public class UserController {
@PostMapping(value = "/register")
public ResponseEntity<Object> registerUser(@RequestBody UserRequest userRequest){
// I will create the user
// I need to make the asyn call to background job to send email/sms/events
sendEvents(userId, type) // this shouldn't block the response.
// need to send immediate response
Response x = new Response();
x.setCode("success");
x.setMessage("success message");
return new ResponseEntity<>(x, HttpStatus.OK);
}
}
如何在不阻止响应的情况下使sendEvents (无需返回只是后台任务)?
sendEvents-调用sms / email第三部分api或将事件发送到kafka主题。
感谢。
答案 0 :(得分:0)
听起来像the Spring @Async annotation的完美用例。
@Async
public void sendEvents() {
// this method is executed asynchronously, client code isn't blocked
}
重要:@Async
仅适用于公共方法,无法从单个类内部调用。如果将sendEvents()
方法放在UserController
类中,它将同步执行(因为绕过了代理机制)。创建一个单独的类来提取异步操作。
为了在Spring Boot应用程序中启用异步处理,您必须使用适当的注释标记主类。
@EnableAsync
public class Application {
public static void main(String[] args) {
SpringApplication application = new SpringApplication(Application.class);
application.run(args);
}
}
或者,您也可以将@EnableAsync
注释放在任何@Configuration
类上。结果将是相同的。