I'm new to all the JAXB/JAX-RS stuff. At work, we are using Mule ESB with its Jersey/Jackson module to accept incoming REST requests. On the client side we're using RestEasy (with Jackson)... The request should be in Json, not in XML.
It works well for simple objects, containing String fields only. But as soon as we start using more "complex" types, like Locales, enums or Maps, problems arise.
If I understand correctly, there is no built-in serializers in JAXB for types like Map (I should even say "HashMap", since JAXB doesn't support interfaces well if I understand correctly). So you have to provide your own serializers for those fields.
From my searches on the web, I've seen that the @XmlJavaTypeAdapter annotation can be used to manage your own serialization of a type like "Map". But I also see, in Jackson documentation, that the @JsonSerialize(using=MySerializer.class) annotation can be used.
What should we use and why? @XmlJavaTypeAdapter or @JsonSerialize? Are they the same or do they have different purpose?