Hibernate
文章平均质量分 54
zhangshufei
爱好广泛,性格外向!
展开
-
Hibernate3.6 容易报的两处错误
今天使用Hibernate3.6做一个简单的用户增、删、改、查,期间报出了好几个小问题,百度一下,Google一下就能解决,但是有一、二个没有解决,不敢藏私,写出来和大家分享一下!一、tomcat 运行过程中提示: 2011-12-31 15:26:39,778 WARN [org.hibernate.util.DTDEntityResolver] - recognized obsole...2014-02-13 16:56:00 · 124 阅读 · 0 评论 -
hibernate discriminator标签
discriminator标签在xml文件中的位置有特定的要求,它必须在主键定义的后面,如果放在其他字段后xml文件会提示一个Thecontentofelementtype"class"mustmatch"(meta*,subselect?,cache?,synchronize*,comment?,tuplizer*,(id|composite-id),discriminator?,natu...2014-02-21 09:31:00 · 206 阅读 · 0 评论 -
hibernate报could not initializa proxy -no session
今天利用hibernate做一个用户登录的小实例,其中根据ID查询单个用户时,报一个could not initializa proxy -no session的错误,仔细检查了一下代码,又google了一个,发现其中一句Users users = (Users)session.load(Users.class,1),在这个方法中没有用到users对象,根据hibernate懒加载的定义,只有使...2014-03-10 17:18:00 · 100 阅读 · 0 评论 -
org.hibernate.hql.internal.ast.QuerySyntaxException: agency is not mapped
今天在使用hibernate+springmvc框架,做一个查询时出现了一个错误,sql语句大体为: select count(id) from address where agency_id in (select id from agency where pids like '%,42,' or id=42) and shflag=0 order by id desc 在mysql查...原创 2018-01-25 08:14:46 · 437 阅读 · 0 评论