首页 > Web开发 > 详细

[解决方法]Hibernate查询部分字段(含外键)出错,报空指针异常

时间:2016-04-03 23:58:52      阅读:492      评论:0      收藏:0      [点我收藏+]

假设当前表结构如下:

  food表字段有foodid,name,外键businessid,外键type

  business表字段有,name,外键type

  type表字段有id,name,foodid

 

Hibernate生成的对应POJO分别是Food,Business,Type

 

需要查询food表部分字段,如name和外键businessid

  则可在Food类中添加只有相应成员变量的构造方法,Food(String name,Business business)

使用hql语句 

select new Food(name,business) from Food where foodid=1

 

 

以上可以顺利查询,但是如果调换name和顺序

使用Food(Business business,String name)

hql语句 

select new Food(business, name) from Food where foodid=1

就会报空指针异常

 

这其实是因为外键的关联表Business中也含有叫name的字段,所以会发生错误,此时只要给查询表使用别名就可以解决了.

正确的语句:

select new Food(f.business, f.name) from Food f where foodid=1

 

同理,如果也查询外键type, 那么:

错误的语句:

select new Food(name,business,type) from Food where foodid=1

 

正确的语句:

select new Food(f.name,f.business,f.type) from Food f where f.foodid=1

 

  

[解决方法]Hibernate查询部分字段(含外键)出错,报空指针异常

原文:http://www.cnblogs.com/rufusvisaber/p/5351080.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!