java.lang.NoSuchMethodException: x.getHibernateLazyInitializer() 博客分类: Java WebJava 序列化struts克隆getHibernateLazyInitializerjava.lang.NoSuchMethodException
程序员文章站
2024-03-26 12:07:47
...
使用struts2 对java 对象进行序列化时报错:
java.lang.NoSuchMethodException: com.entity.message.push.OSMessage.getHibernateLazyInitializer() at java.lang.Class.getMethod(Class.java:1607) at org.apache.struts2.json.JSONWriter.findBaseAccessor(JSONWriter.java:266) at org.apache.struts2.json.JSONWriter.bean(JSONWriter.java:194) at org.apache.struts2.json.JSONWriter.processCustom(JSONWriter.java:171) at org.apache.struts2.json.JSONWriter.process(JSONWriter.java:161) at org.apache.struts2.json.JSONWriter.value(JSONWriter.java:127) at org.apache.struts2.json.JSONWriter.write(JSONWriter.java:95) at org.apache.struts2.json.JSONUtil.serialize(JSONUtil.java:91)
有问题的代码:
原因:message对象是使用hibernate的load方式从数据库中获取的。所以实际上message是一个代理,不是message对象本身,所以序列化时报错。
解决方法:通过clone 克隆,返回一个真实的对象
同时Message对象必须实现Cloneable 接口,Message类中增加方法:
public Message clone() throws CloneNotSupportedException { return (Message) super.clone(); }
使用clone 克隆时,返回的不是代理,是真实的message对象。