HTTP Status 500

来源:互联网 发布:淘宝代付可以用微信吗 编辑:程序博客网 时间:2024/06/05 10:39

使用hibernate模板进行hql语句查询报错

HTTP Status 500 - IllegalArgumentException occurred calling getter of cn.mani123.domain.Account.id; :

原语句

String hql = "from Order where account = ?" ;List list = this.getHibernateTemplate().find(hql,id);
改为:
String hql = "from Order where account = " + id;List list = this.getHibernateTemplate().find(hql);

即可!好像是hibernate的一个bug。。。。。

0 0