4

我的 Spring 应用程序有问题。
如何LocalDate在 JSON 中格式化 a ...
问题是,当我发送 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>

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

4

0 回答 0