From: Alberto S. <nob...@gm...> - 2015-09-03 23:15:20
|
Just found out the answer to this: We can't use jackson providers for this (as noted in the original documentation), but jettison provider instead: Thus, we need to disable all jackson providers from our environment. For example in WildFly 8.x: Create a META-INF/jboss-structure-deployment.xml file with the following: <jboss-deployment-structure> <deployment> <exclusions> <module name="org.jboss.resteasy.resteasy-jackson-provider" /> <module name="org.jboss.resteasy.resteasy-jackson2-provider" /> </exclusions> <dependencies> <module name="org.jboss.resteasy.resteasy-jettison-provider" /> </dependencies> </deployment> </jboss-deployment-structure> Hope this helps, Alberto |