Hibernate
文章平均质量分 76
牛仔very的忙
一门高级语言,一门脚本语言,一门数据结构,一门数据库,一个开源框架,一个版本控制。
展开
-
Connection cannot be null when 'hibernate.dialect' not set
学习hibernate的首日写了个小程序就出现了bug,找了点资料还是很快给解决了刚开始的时候是:package cn.edu.njupt.zzq.hibernatestudy.domain.test;import org.hibernate.Session;import org.hibernate.SessionFactory;import org.hibernate.cfg原创 2013-08-14 18:00:14 · 2002 阅读 · 0 评论 -
Hibernate中cascade和inverse的区别与用法
Inverse和cascade是Hibernate映射中最难掌握的两个属性。两者都在对象的关联操作中发挥作用。1.明确inverse和cascade的作用inverse 决定是否把对对象中集合的改动反映到数据库中,所以inverse只对集合起作用,也就是只对one-to-many或many-to-many有效(因 为只有这两种关联关系包含集合,而one-to-one和many-to-one转载 2013-09-21 20:41:46 · 2087 阅读 · 0 评论 -
Eclipse反向生成hibernate实体类等的方法
Eclipse中使用Hibernate-tools反向生成hibernate实体类 在myeclipse中生成hibernate的实体类很容易,但是要想在eclipse中产生和eclipse同样的效果,那就要费一点小事了啊,从网上找的很多资料都是一个模板抄来抄去的,但是不全,下面我来给大家来个史上最全的版本,使用最新的eclipse版本,最新的hibernate版本。一.准备工作1.E原创 2013-09-09 10:10:32 · 1306 阅读 · 0 评论 -
getHibernateTemplate().find方法详解
Spring中常用的hql查询方法(getHibernateTemplate()) --------------------------------- 一、find(String queryString); 示例:this.getHibernateTemplate().find("from bean.User"); 返回所有User对象转载 2013-07-16 11:57:52 · 763 阅读 · 0 评论 -
SSH整合步骤
这几天打算深入学习ssh,这里总结了ssh整合的基本步骤, ssh整合步骤: 1.导入必要的jar包; 2.在web.xml中配置对spring的支持; 在web.xml中加入如下代码. contextConfigLocation classpath*:application-context.xml转载 2013-07-13 15:51:13 · 709 阅读 · 0 评论 -
关于hibernate中的延迟加载和left join fetch
今天在做项目,出现了这个问题:Struts Problem ReportStruts has detected an unhandled exception:Messages:could not initialize proxy - no Sessionjava.lang.reflect.InvocationTargetExceptionorg.ap原创 2013-12-10 16:37:16 · 3007 阅读 · 0 评论 -
Hibernate中HibernateDaoSupport 的源码
从网上找的hibernate源码 package org.springframework.orm.hibernate3.support; import org.hibernate.HibernateException; import org.hibernate.Session; import org.hibernate.SessionFactory; impor原创 2013-07-13 16:56:51 · 1133 阅读 · 0 评论 -
SSH整合登录案例
以前使用的最多的就是Structs,对Spring,Hibernate的没涉及到过,最近做了一个用户登录的小案例,将SSH整合到一起,原先要使用Ajax来处理前台的信息传递,后来时间紧迫就没用,后期改进再发博。自己总结了下SSH的整合步骤,以及在开发案例中遇到的一些情况。 一:如何整合SSH 整合SSH主要是利用配置文件来完成,这部分整合步骤在我原创 2013-07-13 15:57:37 · 1108 阅读 · 0 评论