I know that you can implement ObjectMapperCustomizer
to configure the mapper for your Quarkus REST service. However, it's not clear in the documentation for Quarkus REST Client, whether it will use that same (global?) mapper or not. And how do you handle the situation when an external service have a different JSON naming convention than your own service? I can't find a way to configure the ObjectMapper for a REST client. I assume you can probably work around this with Jackson annotations, but I'm looking for a way to do it just by configuring an ObjectMapper.
So, basically, the question is: How do I configure a separate ObjectMapper for one specific REST client?