本文介绍了使用Jackson作为Jersey客户端序列化器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用Jersey Client API时,是否可以使用Jackson作为JSON数据的序列化程序/编组程序而不是JAXB?

Is it possible to use Jackson as the serializer/marshaller for JSON data instead of JAXB when using Jersey Client API?

如果是这样,如何配置它?

If so how to configure it?

推荐答案

好的,我发现它毕竟是非常简单的:

OK, I found it out, it turns out to be quite simple after all:

ClientConfig cc = new DefaultClientConfig();
cc.getClasses().add(JacksonJsonProvider.class);
Client clientWithJacksonSerializer = Client.create(cc);

JacksonJsonProvider来自jackson-jaxrs包。

The JacksonJsonProvider comes from the jackson-jaxrs package.

这篇关于使用Jackson作为Jersey客户端序列化器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 07:00