- springboot 2 - webFlux - thymeleaf WebClient? https://www.baeldung.com/spring-5-webclient Spring 5 WebClient | Baeldung Discover Spring 5's WebClient - a new reactive RestTemplate alternative. www.baeldung.com Spring 에서 제공하는 REST 클라이언트 중 하나. RestTemplate 를 많이 활용하였으나 공식적으로 deprecated 되기 때문에 WebClient 를 사용하기로 하였다. 가장 큰 특징은 Asynchronous I/O 방식. 따라서 블로킹되지 않아 기존의 RestTemplate 보다 성능이 좋다. 실습해보자 1. 관련..