Beware of using spring WebClient(Episode1)
header explosion
When you create a webClient in advance and reuse it whenever you need it,
this.webClient = WebClient.builder()
.clientConnector(connector)
.baseUrl("https://yangbongsoo.tech")
.build()
.post();
If the...
yangbongsoo.hashnode.dev2 min read
Mathieu Lalonde
Software Developer
A lot of these pitfalls are subtle! Thanks for sharing!