6

我正在尝试使用 Jackson 库序列化 Java 动态代理,但出现此错误:

public interface IPlanet {
String getName();
}

Planet implements IPlanet {
    private String name;
    public String getName(){return name;}
    public String setName(String iName){name = iName;}
}

IPlanet ip = ObjectsUtil.getProxy(IPlanet.class, p);
ObjectMapper mapper = new ObjectMapper();
mapper.writeValueAsString(ip);

//The proxy generation utility is implemented in this way:
/**
 * Create new proxy object that give the access only to the method of the specified
 * interface.
 * 
 * @param type
 * @param obj
 * @return
 */
public static <T> T getProxy(Class<T> type, Object obj) {
    class ProxyUtil implements InvocationHandler {
        Object obj;
        public ProxyUtil(Object o) {
            obj = o;
        }
        @Override
        public Object invoke(Object proxy, Method m, Object[] args) throws Throwable {
            Object result = null;
            result = m.invoke(obj, args);
            return result;
        }
    }
    // TODO: The suppress warning is needed cause JDK class java.lang.reflect.Proxy
    // needs generics
    @SuppressWarnings("unchecked")
    T proxy = (T) Proxy.newProxyInstance(type.getClassLoader(), new Class[] { type },
            new ProxyUtil(obj));
    return proxy;
}

我得到这个例外:

Exception in thread "main" com.fasterxml.jackson.databind.JsonMappingException: No serializer found for class $Proxy11 and no properties discovered to create BeanSerializer (to avoid exception, disable SerializationConfig.SerializationFeature.FAIL_ON_EMPTY_BEANS) )

序列化休眠代理对象时发生的问题似乎相同,但我不知道如何以及是否可以使用 Jackson-hibernate-module 来解决我的问题。

更新:从 Jackson 2.0.6 版本解决了这个错误

4

2 回答 2

2

您可以尝试 Genson 库http://code.google.com/p/genson/。我刚刚用它测试了你的代码,它工作正常输出是 {"name":"foo"}

Planet p = new Planet();
p.setName("foo");
IPlanet ip = getProxy(IPlanet.class, p);
Genson genson = new Genson();
System.out.println(genson.serialize(ip));

它具有其他库中不存在的一些不错的功能。例如在没有任何注释的情况下使用带有参数的构造函数或在运行时在对象上应用所谓的 BeanView(充当模型的视图),可以反序列化为具体类型,等等……看看 wiki http:/ /code.google.com/p/genson/wiki/GettingStarted

于 2012-08-24T16:19:29.047 回答
1

这可能是 Jackson 中的一个错误——代理类可能被明确禁止被视为 bean。你可以提交一个错误——如果 Genson 可以处理它,Jackson 也应该。:-)

于 2012-08-24T18:57:39.557 回答