在Grails 3 JSON / rest-api中格式化java.time(jsr310)对象

时间:2016-05-19 14:35:47

标签: json grails grails-3.1 jsr310

尝试在Grails 3.1.x休息控制器中使用java.time API。

我的域名对象“缺席”有一个字段

LocalDate date

build.gradle包含

compile "org.jadira.usertype:usertype.extended:5.0.0.GA"

作为依赖

和application.groovy包含

grails.gorm.default.mapping = {
'user-type'(type: org.jadira.usertype.dateandtime.threeten.PersistentLocalDate, class: LocalDate)
'user-type'(type: org.jadira.usertype.dateandtime.threeten.PersistentLocalDateTime, class: LocalDateTime)

}

这适用于持久化域对象,因此它的后端/ db端似乎按预期工作。

但是,当通过RestController序列化域对象时,我无法正确格式化我想要的方式(即yyyy-MM-dd)。 输出是

"date": {
        "chronology": {
            "calendarType": "iso8601", 
            "class": "java.time.chrono.IsoChronology", 
            "id": "ISO"
        }, 
        "class": "java.time.LocalDate", 
        "dayOfMonth": 19, 
        "dayOfWeek": {
            "enumType": "java.time.DayOfWeek", 
            "name": "THURSDAY"
        }, 
        "dayOfYear": 140, 
        "era": {
            "enumType": "java.time.chrono.IsoEra", 
            "name": "CE"
        }, 
        "leapYear": true, 
        "month": {
            "enumType": "java.time.Month", 
            "name": "MAY"
        }, 
        "monthValue": 5, 
        "year": 2016
    }, 

但我真正想要的是

"date": "2016-05-19"

我试图在Grails文档中找到解决方案,但是,即使多次搜索答案后,我似乎无法弄明白。我找到了关于格式化java.util.Date的文档,但这不是我想要的。

GET请求的“问题”不是很多,但是对于POST和PUT请求它是不切实际的,所以我需要让短格式的yyyy-MM-dd工作。

有没有人找到解决方案?

1 个答案:

答案 0 :(得分:0)

从Grails Slack问题频道获得答案。目前不容易做到。您需要自定义数据绑定和json渲染才能实现此目的,最终我放弃了