3

我正在为 GSON 中的域对象编写自定义序列化程序,因此它只序列化某些对象:

 @Override
    public JsonElement serialize(BaseModel src, Type typeOfSrc, JsonSerializationContext context) {

        JsonObject obj = new JsonObject();


        Class objClass= src.getClass();

        try {
            for(PropertyDescriptor propertyDescriptor : 
                Introspector.getBeanInfo(objClass, Object.class).getPropertyDescriptors()){

                                    if(BaseModel.class.isAssignableFrom(propertyDescriptor.getPropertyType()))
                {
                    //src.getId()
                }
                else if(Collection.class.isAssignableFrom(propertyDescriptor.getPropertyType()))
                {
                    //whatever
                }
                else {
                    String value = (propertyDescriptor.getReadMethod().invoke(src)) != null?propertyDescriptor.getReadMethod().invoke(src).toString():"";
                    obj.addProperty(propertyDescriptor.getName(), value);
                }
            }
        } catch (IntrospectionException | IllegalAccessException | IllegalArgumentException | InvocationTargetException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }


        return obj;
    }

问题是我也想序列化 HashMaps,但这样我得到如下值:

{"key"=com.myproject.MyClass@28df0c98}

虽然我希望 Gson 将默认的序列化行为应用于 HashMaps。我如何告诉 GSON 在序列化某些对象时“正常”行事?

4

1 回答 1

2

警告:答案已过期。
虽然这个答案最初被接受和赞成,但后来它也有反对意见和评论说它是错误的,所以我猜它已经过时了。


我很确定您可以使用JsonSerializationContext context您拥有的对象作为serialize方法的参数。

实际上,根据Gson API 文档,这个对象有一个方法序列化:

在指定对象上调用默认序列化。

所以我想你只需要在你想要HashMap 正常序列化的地方做这样的事情:

context.serialize(yourMap);
于 2013-09-19T11:13:06.620 回答