Deserialize header to Pojo in Webflux?

80 Views Asked by At

I have a header that's some encoded Json, so I have a POJO to deserialize it to.

How do I make Spring Boot auto deserialize it?

I've tried creating a @Component Test implements Converter<String, MyPojo> but it never gets called. The one example I found was for WebMvc.

0

There are 0 best solutions below