사후 대응적인 Web Client가 3XX 리다이렉트를 따르도록 하려면 어떻게 해야 합니까? spring-boot 2에서 netty를 사용하여 reactive Webclient를 사용하여 요청을 하는 기본 REST 컨트롤러를 만들었습니다. @RestController @RequestMapping("/test") @Log4j2 public class TestController { private WebClient client; @PostConstruct public void setup() { client = WebClient.builder() .baseUrl("http://www.google.com/") .exchangeStrategies(ExchangeStrategies.withDefaults()) .bu..