hibernate对象懒加载,json序列化失败

今天用springMVC 

@ResponseBody 返回一个有懒加载对象的时候出现了错误,

网上查了下可以在pojo中生成一个构造函数,不包括我们的懒加载对象

 

 public News(int id, String newContent, Date addDate, Date updateDate, String addUser, String updateUser, int isFlag, String newsStaticUrl, int is_enable, String newsTitle, String newsDesc, int orderNumber) {
  this.id = id;
  this.newContent = newContent;
  this.addDate = addDate;
  this.updateDate = updateDate;
  this.addUser = addUser;
  this.updateUser = updateUser;
  this.isFlag = isFlag;
  this.newsStaticUrl = newsStaticUrl;
  this.is_enable = is_enable;
  this.newsTitle = newsTitle;
  this.newsDesc = newsDesc;
  this.orderNumber = orderNumber;
 }

 

 

然后hql查询时用:

 Query query = entityManager.createQuery("select new News(s.id,s.newContent,s.addDate,s.updateDate,s.addUser,s.updateUser,s.isFlag,s.newsStaticUrl," +
    "s.is_enable,s.newsTitle,s.newsDesc,s.orderNumber)
from"+sql.toString());

 

因为懒加载这个对象属性只是一个代理对象,如果json直接当作一个存在的属性去序列化就会出现错误,所以就只能这样了,当然还有其他办法吧

或者在class上加上

 @JsonIgnoreProperties(value={"hibernateLazyInitializer","handler","fieldHandler"})
public class ProductPrice {

 

springMVC 返回json报500错误的话可以

 ObjectMapper mapper=new ObjectMapper();

   try {
    String jsonString=mapper.writeValueAsString(object);
    System.out.print(jsonString);
   } catch (JsonGenerationException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
   } catch (JsonMappingException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
   } catch (IOException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
   }

 

在后台序列化一下,看看报的错误是什么,然后再去网上查查错误的解决方法

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值