导包SSM或SSH2的jar包 新建springmvc-servlet.xml ——配置视图解析器(前缀和后缀) 新建applocationContext.xml ——配置数据库连接,sqlSessionFatory/sessionFactory工厂 <import resource="">提取外部 ...
分类:
其他好文 时间:
2017-12-21 11:55:17
阅读次数:
460
原文:http://www.blogjava.net/supercrsky/articles/238580.html 与Session相对的是,SessionFactory也提供了相应的缓存机制。SessionFactory缓存可以依据功能和目的的不同而划分为内置缓存和外置缓存。 SessionFa ...
分类:
Web程序 时间:
2017-12-11 13:55:00
阅读次数:
238
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean" p:dataSource-ref="dataSource"> <property name="hibernateP ...
分类:
数据库 时间:
2017-11-27 11:11:11
阅读次数:
149
hibernate:1.hibernate的工作原理. 1.通过configuration,类加载hibernate的主机配置文件 2.创建sessionFactory文件 3.由sessionFactory对象打开一个一个session对象. 4.由session完成curd操作。如果是增删改还需 ...
分类:
Web程序 时间:
2017-11-26 12:44:52
阅读次数:
181
1. Hibernate简介 Hibernat是一个ORM(关系映射)框架,对JDBC访问数据库的操作进行了简化,并且将数据库表中的字段和关系映射为对象,简化了对数据库的操作。 2. 使用方法 读取并解析配置文件 读取并解析映射信息,创建SessionFactory 打开Sesssion 创建事务T ...
分类:
其他好文 时间:
2017-11-14 14:33:17
阅读次数:
130
package com.wode.util; import org.hibernate.HibernateException;import org.hibernate.Session;import org.hibernate.SessionFactory;import org.hibernate.c ...
分类:
Web程序 时间:
2017-11-12 14:50:57
阅读次数:
121
由于在Spring定时器中无法通过注解的方式获取bean,因此需要通过原生的方式获取。获取session的方式如下: WebApplicationContext wac = ContextLoader.getCurrentWebApplicationContext(); SessionFactory ...
分类:
编程语言 时间:
2017-11-10 10:56:40
阅读次数:
220
applicationContext.xml 中已经配置 web.xml中 报错信息: ...
分类:
其他好文 时间:
2017-11-09 14:46:50
阅读次数:
385
一、hibernate是什么? Hibernate是一个开放源代码的对象关系映射框架,它对JDBC进行了非常轻量级的对象封装,使得Java程序员可以随心所欲的使用对象编程思维来操纵数据库。 Hibernate可以应用在任何使用JDBC的场合,既可以在Java的客户端程序使用,也可以在Servlet/ ...
分类:
Web程序 时间:
2017-10-18 16:06:32
阅读次数:
274
1. Architecture 1.1. Overview SessionFactory (org.hibernate.SessionFactory) A thread-safe (and immutable) representation of the mapping of the applica ...
分类:
Web程序 时间:
2017-10-18 11:49:46
阅读次数:
279