spring mvc 使用jackson暴露http+json服务时,如何设置jackson

本文介绍如何通过自定义ObjectMapper来调整JSON序列化与反序列化的设置,包括禁用空Bean检查、调整可见性配置、启用针对getter方法的setter要求等,并展示了如何将自定义的ObjectMapper注入到Spring的HTTP消息转换器中。
摘要由CSDN通过智能技术生成
1.自定义ObjectMapper

public class CustomObjectMapper extends ObjectMapper
{
public CustomObjectMapper()
{
super();
configure(SerializationFeature.FAIL_ON_EMPTY_BEANS, false);
setVisibilityChecker(getSerializationConfig()
.getDefaultVisibilityChecker()
.withFieldVisibility(JsonAutoDetect.Visibility.ANY)
.withGetterVisibility(JsonAutoDetect.Visibility.NONE)
.withSetterVisibility(JsonAutoDetect.Visibility.NONE)
.withCreatorVisibility(JsonAutoDetect.Visibility.NONE));
configure(MapperFeature.REQUIRE_SETTERS_FOR_GETTERS, true);
configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
}
}

2.org.springframework.http.converter.json.MappingJackson2HttpMessageConverter中注入objectMapper

<bean
class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping" />
<bean
class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">
<property name="messageConverters">
<list>
<bean
class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">
<property name="objectMapper">
<bean class="package.path.CustomObjectMapper" />
</property>
<property name="supportedMediaTypes">
<list>
<value>application/json;charset=UTF-8</value>
</list>
</property>
</bean>
</list>
</property>
</bean>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值