Configure Jackson as JSON Provider in JAX-RS 2.0

时光怂恿深爱的人放手 提交于 2019-11-30 08:53:59

You should only need to get the implementation jar Jackson JAX-RS provider, add that to your classpath, and it should work. Version 2.x uses SPI-based auto-registration, so that you do not need anything in web.xml.

SuperNova1054

The above code worked for me. JAX-RS 2.0 has auto discovery feature so it should detect your jersey-media-json-jackson.jar. I am using a Tomcat setup so, I had to explicitly call register(JacksonFeature.class) in my application as you do.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!