How to Fetch Data and then Delete it from database using Spring Webflux? – Postgresql
Delete Operation is not working. How can i fetch data and then delete it in a functional way? The code successfully run but it is not deleting data in database. Controller Class @DeleteMapping("/deleteUserById/{userId}") public Mono<ResponseEntity<String>> deleteUserById(@PathVariable Long userId) { return…