Webflux에서 ResponseEntity 리턴 시 유의해야 할 점 Webflux를 사용할 때, Controller에서 ResponseEntity 형태로 dto를 리턴하고 싶을 때가 있다. 이 때, Mono<ResponseEntity> 와 ResponseEntity<Mono> 는
Spring Async vs Spring Webflux https://www.baeldung.com/spring-mvc-async-vs-webflux 기존 스프링 MVC에서는 Blocking 방식을 사용하고 있었고, Java 8에서 Future, CompletableFuture 와 같은 비동기 지원을 통해 한정적으로 비동기 요청 처리를 할 수 있었다. MVC에서