Spring boot send async tasks
问题 I need to send the email/sms/events as a background async task inside spring boot rest. My REST controller @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();