资源简介
这是一个struts2+hibernate3.2+Mysql完整框架的例子,对于初学者很有帮助。
代码片段和文件信息
package org;
import org.hibernate.HibernateException;
import org.hibernate.Session;
import org.hibernate.cfg.Configuration;
/**
* Configures and provides access to Hibernate sessions tied to the
* current thread of execution. Follows the Thread Local Session
* pattern see {@link http://hibernate.org/42.html }.
*/
public class HibernateSessionFactory {
/**
* Location of hibernate.cfg.xml file.
* Location should be on the classpath as Hibernate uses
* #resourceAsStream style lookup for its configuration file.
* The default classpath location of the hibernate config file is
* in the default package. Use #setConfigFile() to update
* the location of the configuration file for the current session.
*/
private static String CONFIG_FILE_LOCATION = “/hibernate.cfg.xml“;
private static final ThreadLocal threadLocal = new ThreadLocal();
private static Configuration configuration = new Configuration();
private static org.hibernate.SessionFactory sessionFactory;
private static String configFile = CONFIG_FILE_LOCATION;
static {
try {
configuration.configure(configFile);
sessionFactory = configuration.buildSessionFactory();
} catch (Exception e) {
System.err
.println(“%%%% Error Creating SessionFactory %%%%“);
e.printStackTrace();
}
}
private HibernateSessionFactory() {
}
/**
* Returns the ThreadLocal Session instance. Lazy initialize
* the SessionFactory
if needed.
*
* @return Session
* @throws HibernateException
*/
public static Session getSession() throws HibernateException {
Session session = (Session) threadLocal.get();
if (session == null || !session.isOpen()) {
if (sessionFactory == null) {
rebuildSessionFactory();
}
session = (sessionFactory != null) ? sessionFactory.openSession()
: null;
threadLocal.set(session);
}
return session;
}
/**
* Rebuild hibernate session factory
*
*/
public static void rebuildSessionFactory() {
try {
configuration.configure(configFile);
sessionFactory = configuration.buildSessionFactory();
} catch (Exception e) {
System.err
.println(“%%%% Error Creating SessionFactory %%%%“);
e.printStackTrace();
}
}
/**
* Close the single hibernate session instance.
*
* @throws HibernateException
*/
public static void closeSession() throws HibernateException {
Session session = (Session) threadLocal.get();
threadLocal.set(null);
if (session != null) {
session.close();
}
}
/**
* return session factory
*
*/
public static org.hibernate.SessionFactory getSessionFactory() {
return sessionFactory;
}
/**
* return session factory
*
* session factory will be rebuil
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 848 2008-08-22 09:27 bookstore\.classpath
文件 466 2008-08-22 09:27 bookstore\.myhibernatedata
文件 300 2008-08-22 09:27 bookstore\.myme
文件 1429 2008-08-22 09:27 bookstore\.project
文件 4743 2008-08-22 09:27 bookstore\src\bookstore.sql
文件 1134 2008-08-22 09:27 bookstore\src\hibernate.cfg.xm
文件 653 2008-08-22 09:27 bookstore\src\org\dao\Iba
文件 556 2008-08-22 09:27 bookstore\src\org\dao\IBookDao.java
文件 5171 2008-08-22 09:27 bookstore\src\org\dao\impl\ba
文件 1294 2008-08-22 09:27 bookstore\src\org\dao\impl\BookDaoImpl.java
文件 1343 2008-08-22 09:27 bookstore\src\org\dao\impl\OrderDaoImpl.java
文件 1529 2008-08-22 09:27 bookstore\src\org\dao\impl\UserDaoImpl.java
文件 261 2008-08-22 09:27 bookstore\src\org\dao\IOrderDao.java
文件 565 2008-08-22 09:27 bookstore\src\org\dao\UserDao.java
文件 3317 2008-08-22 09:27 bookstore\src\org\HibernateSessionFactory.java
文件 2226 2008-08-22 09:27 bookstore\src\org\model\Bookinfo.hbm.xm
文件 3143 2008-08-22 09:27 bookstore\src\org\model\Bookinfo.java
文件 1553 2008-08-22 09:27 bookstore\src\org\model\Order.hbm.xm
文件 1985 2008-08-22 09:27 bookstore\src\org\model\Order.java
文件 841 2008-08-22 09:27 bookstore\src\org\model\Rebate.hbm.xm
文件 905 2008-08-22 09:27 bookstore\src\org\model\Rebate.java
文件 1265 2008-08-22 09:27 bookstore\src\org\model\Remark.hbm.xm
文件 1507 2008-08-22 09:27 bookstore\src\org\model\Remark.java
文件 1909 2008-08-22 09:27 bookstore\src\org\model\Userinfo.hbm.xm
文件 2559 2008-08-22 09:27 bookstore\src\org\model\Userinfo.java
文件 3034 2008-08-22 09:27 bookstore\src\org\web\BookAction.java
文件 5247 2008-08-22 09:27 bookstore\src\org\web\CartAction.java
文件 1898 2008-08-22 09:27 bookstore\src\org\web\IndexAction.java
文件 1200 2008-08-22 09:27 bookstore\src\org\web\interceptor\AuthenticationInterceptor.java
文件 1199 2008-08-22 09:27 bookstore\src\org\web\paging\PageInfo.java
............此处省略112个文件信息
- 上一篇:2014年列车时刻表
- 下一篇:[大数据] 大数据分析 (英文版)
相关资源
- BBS管理系统(struts2+mysql)
- 用struts2实现的公交查询系统
- 基于Struts2的学生选课管理系统
- 中小型酒店管理系统的设计与实现源
- ·学生信息管理系统Hibernate+Struts2
- 适合Struts 初学者
- 非常实用 适合Struts和Hibernate初学者
- 基于Struts2+Hibernate4实现报道管理系统
- 基于SH+Mysql的用户管理系统
- struts2+mysql图书馆管理系统
- struts2登录注册
- struts2 做的用户登陆注册系统
- struts2+tomcat+mysql实现web聊天室
- 在线请假系统struts2+sqlserver
- Struts2+MySQL登录注册
- ssh2文件上传和
- struts2 mysql实现简单学生成绩管理代码
- Hibernate+Struts2实现的图书系统的设计实
- SSH2整合(Struts2+Spring+Hibernate)+SQL S
- 基于struts2的图书馆管理系统(Mysql)
- 宿舍管理系统毕业设计
- Struts2做的登陆注册及用户信息管理系
- struts2+spring+hibernate 做的图书管理系统
- 北大青鸟房屋租赁系统-Mysql版-struts
- 基于struts2的个人信息管理系统
- spring+mybatis+struts2+MySQL课程管理系统
- struts2+hibernate+Mysql开发图书管理系统
- SSH框架搭建成功注解方式,Struts2自身
- SSH框架实现的用户注册功能可运行
- struts2+mysql+增删改查
评论
共有 条评论