8

我正在尝试像这样注册一个自定义 json marshaller

 JSON.createNamedConfig("dynamic",{ 
            def m = new CustomJSONSerializer()
            JSON.registerObjectMarshaller(Idf, 1, { instance, converter -> m.marshalObject(instance, converter) }) 
            })

and then using it like this

    JSON.use("dynamic"){
            render inventionList as JSON
            }

但我不确定是否正在使用我的自定义序列化程序,因为当我调试控件时marshalObject,我的自定义序列化程序永远不会发挥作用

我的自定义序列化程序如下

import grails.converters.deep.JSON
import java.beans.PropertyDescriptor
import java.lang.reflect.Field
import java.lang.reflect.Method
import org.codehaus.groovy.grails.web.converters.exceptions.ConverterException
import org.codehaus.groovy.grails.web.converters.marshaller.json.GroovyBeanMarshaller
import org.codehaus.groovy.grails.web.json.JSONWriter

class CustomJSONSerializer extends GroovyBeanMarshaller{
    public boolean supports(Object object) {
        return object instanceof GroovyObject;
    }

    public void marshalObject(Object o, JSON json) throws ConverterException {
        JSONWriter writer = json.getWriter();
        println 'properties '+BeanUtils.getPropertyDescriptors(o.getClass())
        for(PropertyDescriptor property:BeanUtils.getProperyDescriptors(o.getClass())){
                println 'property '+property.getName()
            }
        try {
            writer.object();
            for (PropertyDescriptor property : BeanUtils.getPropertyDescriptors(o.getClass())) {
                String name = property.getName();
                Method readMethod = property.getReadMethod();
                if (readMethod != null && !(name.equals("metaClass")) && readMethod.getName()!='getSpringSecurityService') {
                    Object value = readMethod.invoke(o, (Object[]) null);
                    writer.key(name);
                    json.convertAnother(value);
                }
            }
            for (Field field : o.getClass().getDeclaredFields()) {
                int modifiers = field.getModifiers();
                if (Modifier.isPublic(modifiers) && !(Modifier.isStatic(modifiers) || Modifier.isTransient(modifiers))) {
                    writer.key(field.getName());
                    json.convertAnother(field.get(o));
                }
            }
            writer.endObject();
        }
        catch (ConverterException ce) {
            throw ce;
        }
        catch (Exception e) {
            throw new ConverterException("Error converting Bean with class " + o.getClass().getName(), e);
        }
    }


}

是否可以调试序列化程序?如果不是,那么如何从序列化中排除属性?有一些属性会在序列化过程中引发异常。

4

3 回答 3

9

这就是我在 Bootstrap init 闭包中为自定义 JSON 编组所做的:

def init = {servletContext ->
    grailsApplication.domainClasses.each {domainClass ->
        domainClass.metaClass.part = {m ->
            def map = [:]
            if (m.'include') {
                m.'include'.each {
                    map[it] = delegate."${it}"
                }
            } else if (m.'except') {
                m.'except'.addAll excludedProps
                def props = domainClass.persistentProperties.findAll {
                    !(it.name in m.'except')
                }
                props.each {
                    map['id'] = delegate.id
                    map[it.name] = delegate."${it.name}"
                }
            }
            return map
        }



    }
    JSON.registerObjectMarshaller(Date) {
        return it?.format("dd.MM.yyyy")
    }
    JSON.registerObjectMarshaller(User) {
        def returnArray = [:]
        returnArray['username'] = it.username
        returnArray['userRealName'] = it.userRealName 
        returnArray['email'] = it.email
        return returnArray
    }
    JSON.registerObjectMarshaller(Role) {
        def returnArray = [:]
        returnArray['authority'] = it.authority
        return returnArray
    }
     JSON.registerObjectMarshaller(Person) {
        return it.part(except: ['fieldX', 'fieldY'])
    }}

你看到我有日期、使用、人员和角色类的自定义编组器

于 2012-04-19T11:49:01.430 回答
6

我在尝试找出编组器注册的正确方法时发现了这篇文章。与 Nils 的回答相比,最大的不同是该解决方案使 BootStrap.groovy 完好无损,这很好。

http://compiledammit.com/2012/08/16/custom-json-marshalling-in-grails-done-right/

于 2012-08-22T09:26:46.493 回答
0

要自定义 Json 序列化,最佳实践是使用 grails 插件,例如:http: //grails.org/plugin/marshallers

于 2014-01-20T15:47:00.223 回答