使用formatter在SpringMvc JSON中格式化JodaTime LocalDate

时间:2013-05-21 08:53:41

标签: json spring format jodatime

我的Spring应用程序有问题 如何格式化JSON中的LocalDate ...
问题是当我发送JSON时我必须发送一个数字,但是当Spring生成JSON我有:

"data": {
    "weekyear": 1970,
    "weekOfWeekyear": 1,
    "chronology": {
        "zone": {
            "fixed": true,
            "id": "UTC"
        }
    },
    "monthOfYear": 1,
    "yearOfEra": 1970,
    ...and a lot more

我的字段包含注释DateTimeFormat,如:

@DateTimeFormat(pattern="dd/MM/yyyy")
private LocalDate data;

还在我的servlet-context.xml中配置了格式服务:

<beans:bean id="conversionService" class="org.springframework.format.support.FormattingConversionServiceFactoryBean">
 </beans:bean>

但仅此一点不起作用,我想要配置什么?

0 个答案:

没有答案