Hibernate
文章平均质量分 73
wq1030
这个作者很懒,什么都没留下…
展开
-
Hibernate主键的生成方式
转自:http://jackle-liu.iteye.com/blog/50965 1) assigned主键由外部程序负责生成,无需Hibernate参与。2) hilo通过hi/lo 算法实现的主键生成机制,需要额外的数据库表保存主键生成历史状态。3) seqhilo与hilo 类似,通过hi/lo 算法实现的主键生成机制,只是主键历史状态保存在Sequence中,适用于支持...原创 2011-01-03 15:26:28 · 84 阅读 · 0 评论 -
java.lang.NoSuchMethodError: antlr.collections.AST.getLine()I
错误Struts Problem ReportStruts has detected an unhandled exception:# Messages: antlr.collections.AST.getLine()IFile: org/hibernate/hql/ast/HqlSqlWalker.javaLine number: 915Stacktraces...原创 2010-10-04 16:50:32 · 386 阅读 · 0 评论 -
hibernate3包详解
antlr-2.7.6.jar 语法生成工具, 语言识别的另一个工具(ANother Tool for Language Recognition ),(前身是 PCCTS)是一种语言工具,它提供了一个框架,可以通过包含Java,C++,或C#动作(action)的语法描述来构造语言识别器,编译器和解析器。 commons-collections-3.1.jar apache的一个...原创 2011-01-13 12:25:29 · 106 阅读 · 0 评论 -
org.hibernate.MappingException: Unknown entity:XXXX
org.hibernate.MappingException: Unknown entity: cd.xf.model.Question at org.hibernate.impl.SessionFactoryImpl.getEntityPersister(SessionFactoryImpl.java:704) at org.hibernate.impl.SessionImp...原创 2011-01-11 15:25:02 · 255 阅读 · 0 评论 -
org.hibernate.hql.ast.QuerySyntaxException: XX is not mapped [from XX]
org.hibernate.hql.ast.QuerySyntaxException: XX is not mapped [from XX]解决办法:1.看是否忘记将hibernate的映射文件添加到Hibernate.cfg.xml(使用Hibernate时)或者applicationContext.xml中2.检查表中的字段和映射文件中的字段是否一一对应3.检查字段名是否使用了...原创 2011-01-04 12:59:22 · 163 阅读 · 0 评论 -
Data truncated for column 'XXX' at row XX
Hibernate: insert into aaa (adescribe, analysistime, analysistotalnum, analysisuid, aname, beginnernum, fillblanknum, isanalysis, isanalysissuccess, multipleselectnum, si...原创 2011-01-04 12:47:31 · 308 阅读 · 0 评论 -
IllegalArgumentException occurred while calling setter……
org.hibernate.PropertyAccessException: IllegalArgumentException occurred while calling setter of cd.xf.model.ExcelInfor.id at org.hibernate.property.BasicPropertyAccessor$BasicSetter.set(BasicPrope...原创 2011-01-04 12:42:23 · 257 阅读 · 0 评论 -
Could not execute JDBC batch update
使用hibernate保存数据时:Hibernate: insert into aaa (analysistime, analysistotalnum, analysisuid, beginnernum, describe, fillblanknum, isanalysis, isanalysissuccess, multiplese...原创 2011-01-04 12:36:24 · 503 阅读 · 0 评论 -
Hibernate常用的注解
喜欢使用注解的方式,感觉没有xml那么繁琐,下面是转来的一些常用注解文章转自:http://bask.iteye.com/blog/212632 @Entity --声明为一个实体bean@Table(name="promotion_info") --为实体bean映射指定表(表名="promotion_info)@Id --声明了该实体...原创 2011-01-03 16:39:21 · 97 阅读 · 0 评论 -
hibernate中的count(*)
有以下方式final String countHql="select count(*) from ExcelInfor";//计算总记录数int count=Integer.parseInt(session.createSQLQuery(countHql).list().get(0).toString());int count=((Long)(session.createQu...原创 2011-03-23 09:43:19 · 123 阅读 · 0 评论