07-09
04
could not resolve property
作者:Java伴侣 日期:2007-09-04
org.hibernate.QueryException could not resolve property userid of com.xxx.yyy.Pay
使用到外键userid的时候,必须使用userinfo.userid方法才能得到。
=========================================
javax.naming.NameNotFoundException Name hibernate_connection_factory is not bound in this Context
原因:hibernate的数据库映射.xml文件有配置错误,导致hibernate_connection_factory无法绑定数据库。
例如many-to-one设置了以后,仍然在其中设置相冲突的property属性。
正确样例:
list = session.find("from NewsVO as n where n.cate=" + cid + "");
cate为一对多关系中的ONE
使用到外键userid的时候,必须使用userinfo.userid方法才能得到。
=========================================
javax.naming.NameNotFoundException Name hibernate_connection_factory is not bound in this Context
原因:hibernate的数据库映射.xml文件有配置错误,导致hibernate_connection_factory无法绑定数据库。
例如many-to-one设置了以后,仍然在其中设置相冲突的property属性。
正确样例:
list = session.find("from NewsVO as n where n.cate=" + cid + "");
cate为一对多关系中的ONE
评论: 0 | 引用: 0 | 查看次数: 4310
发表评论