I want to convert spring resttemplate to spring webclient. in spring resttemplate we can add message converters
How can I tell RestTemplate to POST with UTF-8 encoding?
restTemplate.getMessageConverters().add(0, new StringHttpMessageConverter(StandardCharsets.UTF_8));
How can I do it in spring webclient? I want to add message converter to webclient