我已经com.fasterxml.jackson.datatype.joda.JodaModule
使用以下方法成功地向 Spring 3.2 和 Jackson 2 注册了该模块:
<mvc:annotation-driven>
<mvc:message-converters>
<bean
class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">
<property name="objectMapper" ref="jacksonObjectMapper" />
</bean>
</mvc:message-converters>
</mvc:annotation-driven>
<bean id="jacksonObjectMapper" class="org.mycompany.CustomObjectMapper" />
然而结果是 的序列化LocalDate
是一个包含日期的数组,即今天的日期看起来像[2013,3,12]
。我怎样才能得到这个回报2013-03-12
?