gpt4 book ai didi

json - 如何在 Grails 中实现自定义深层 ObjectMarshaller

转载 作者:行者123 更新时间:2023-12-02 09:28:38 24 4
gpt4 key购买 nike

我正在尝试使用 spring 的 ObjectMarshallerRegisterer bean 注册自定义 JSON 编码器,如所述 here .

我的目的是在编码过程中将实现特定接口(interface)的所有类的每个属性名称大写。

到目前为止,我已经实现了这个被注册为对象编码器的类:

import grails.converters.JSON

import org.codehaus.groovy.grails.web.converters.exceptions.ConverterException;
import org.codehaus.groovy.grails.web.converters.marshaller.ObjectMarshaller;

class MyMarshaller implements ObjectMarshaller<JSON> {

@Override
boolean supports(Object object) {
object instanceof MyInterface
}

@Override
void marshalObject(Object object, JSON json)
throws ConverterException {
def jsonWriter = json.writer

jsonWriter.object()
object.class.metaClass.properties.each {
jsonWriter.key(it.name.capitalize())
def value = object."${it.name}"
if(value == null || value instanceof Boolean ||
value instanceof Number || value instanceof String) {
jsonWriter.value(value)
} else {
// TODO: Fix this
jsonWriter.value(JSON.parse((value as JSON).toString()))
}
}
jsonWriter.endObject()
}
}

这个类确实有效,但我必须插入这一行 jsonWriter.value(JSON.parse((value as JSON).toString())) 作为快速修复。

嗯,将对象转换为字符串然后解析它不是一个好的策略。一定有更好的方法来做到这一点。你们能帮我吗?

谢谢。

最佳答案

嗯,我在 github 上搜索了一些 grails 的源代码,以了解它是如何在默认 Marshallers 上完成的。 this one给了我答案:

上面代码中的行:

jsonWriter.value(JSON.parse((value as JSON).toString()))

应替换为:

json.convertAnother(value);

到目前为止,docs 还不清楚。我发现了。
希望这可以帮助其他遇到同样问题的人。

关于json - 如何在 Grails 中实现自定义深层 ObjectMarshaller<JSON>?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35487993/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com