在Spring 3.1中我应在哪里指定Jackson SerializationConfig.Feature设置

在Spring 3.1中我应在哪里指定Jackson SerializationConfig.Feature设置,第1张

在Spring 3.1中我应在哪里指定Jackson SerializationConfig.Feature设置

从3.1 M1开始,您可以通过注册的

HttpMessageConverters
子元素来指定杰克逊自定义配置
mvc:annotation-driven

参阅Spring 3.1
MVC命名空间的改进

请参阅SPR-7504,使其更轻松地将新的消息转换器添加到AnnotationMethodHandlerAdapter

范例:

<bean id="jacksonObjectMapper" >     </bean><mvc:annotation-driven>    <mvc:message-converters>       <bean ><property name="objectMapper" ref="jacksonObjectMapper" />       </bean>       </mvc:message-converters></mvc:annotation-driven>

CustomObjectMapper对象

    @Component("jacksonObjectMapper")    public class CustomObjectMapper extends ObjectMapper {        @PostConstruct        public void afterPropertiesSet() throws Exception { SerializationConfig serialConfig = getSerializationConfig()       .withDateFormat(null);       //any other configuration this.setSerializationConfig(serialConfig);        }    }

SerializationConfig
.withDateFormat

In addition to constructing instance with specified date format, will enable
or disable Feature.WRITE_DATES_AS_TIMESTAMPS (enable if format set as null;
disable if non-null)



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5441808.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存