hibernate
摘要: 本文总结hibernate中常见的异常。
1. net.sf.hibernate.mappingexception
2. net.sf.hibernate.propertynotfoundexception
3. org.hibernate.id.identifiergenerationexception
4. a different object with the same identifier value was already associated with the session
5. sql grammer exception,could not execute jdbc batch update
posted @ 阿蜜果 阅读(12442) |
摘要: 本节讲述如何使用hibernate实现记录的增、删、改和查功能。
1. 查询
1.1 简单查询
1.2 带单个参数的查询
1.3 多个参数的查询
1.4 查询数量
1.5 限制查询起始值和数量的查询
1.6 子查询
1.7 原生sql查询
2. 新增
2.1 新增单个对象
2.2 批量新增对象
3. 更新
4. 删除
4.1 删除单个对象
4
posted @ 阿蜜果 阅读(3955) |
摘要: 本文讲述hibernate中配置文件....hbm.xml的配置,包括的内容如下:
1. 主键
2. 普通属性
3. 一对多关系
4. 一对一关系
5. 多对多关系
6. 完整实例
posted @ 阿蜜果 阅读(38440) |
摘要: 本文详细讲述hibernate的hibernate.cfg.xml的各种配置方式。
1. 配置数据源
2. c3p0连接池
3. proxool连接池
4. dbcp连接池
5. mysql连接配置
6. sql server连接配置
7. oracle连接配置
posted @ 阿蜜果 阅读(28604) |
摘要: 本文以详尽的实例展示了hibernate3.x中调用存储过程各步骤,从建立测试表、存储过程的建立、工程的建立以及类的编写和测试一步一步引导用户学习hibernate3.x中调用存储过程的方法.
posted @ 阿蜜果 阅读(24131) |
摘要: 本文摘自孙卫琴的《精通hibernate:java对象持久化技术详情》
posted @ 阿蜜果 阅读(1496) |
摘要: 本文对hibernate中对象的3种状态:瞬时态、持久态、脱管态进行了相应介绍。
posted @ 阿蜜果 阅读(9681) |