作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 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/
我是一名优秀的程序员,十分优秀!