资源简介
这是一个web电子地图项目,在myeclipse环境下运行
代码片段和文件信息
package gisserver.hibernate;
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 rebuilded in the next call
*/
public static void setConfigFile(String configFile)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2012-09-19 14:19 GISServer\
文件 1212 2012-09-19 14:19 GISServer\.classpath
目录 0 2012-09-19 14:19 GISServer\.myeclipse\
文件 582 2012-09-19 14:19 GISServer\.myhibernatedata
文件 300 2012-09-19 14:19 GISServer\.myme
文件 1617 2012-09-19 14:19 GISServer\.project
目录 0 2012-09-19 14:19 GISServer\.settings\
文件 500 2012-09-19 14:19 GISServer\.settings\.jsdtscope
文件 135 2012-09-19 14:19 GISServer\.settings\org.eclipse.core.resources.prefs
文件 330 2012-09-19 14:19 GISServer\.settings\org.eclipse.jdt.core.prefs
文件 49 2012-09-19 14:19 GISServer\.settings\org.eclipse.wst.jsdt.ui.superType.container
文件 6 2012-09-19 14:19 GISServer\.settings\org.eclipse.wst.jsdt.ui.superType.name
目录 0 2012-09-19 14:19 GISServer\src\
目录 0 2012-09-19 14:19 GISServer\src\gisserver\
目录 0 2012-09-19 14:19 GISServer\src\gisserver\hibernate\
文件 3220 2012-09-19 14:19 GISServer\src\gisserver\hibernate\HibernateSessionFactory.java
目录 0 2012-09-19 14:19 GISServer\src\gisserver\servlet\
文件 2656 2012-09-19 14:19 GISServer\src\gisserver\servlet\SendMessage.java
目录 0 2012-09-19 14:19 GISServer\src\gisserver\shortMsg\
文件 2423 2012-09-19 14:19 GISServer\src\gisserver\shortMsg\SMproxySendMsg.java
目录 0 2012-09-19 14:19 GISServer\src\gisserver\struts\
文件 104 2012-09-19 14:19 GISServer\src\gisserver\struts\Map.java
文件 744 2012-09-19 14:19 GISServer\src\hibernate.cfg.xm
文件 26 2012-09-19 14:19 GISServer\src\struts.properties
文件 373 2012-09-19 14:19 GISServer\src\struts.xm
目录 0 2012-09-19 14:19 GISServer\WebRoot\
目录 0 2012-09-19 14:19 GISServer\WebRoot\css\
文件 516 2012-09-19 14:19 GISServer\WebRoot\css\map.css
文件 793 2012-09-19 14:19 GISServer\WebRoot\index.jsp
文件 3428 2012-09-19 14:19 GISServer\WebRoot\map.jsp
目录 0 2012-09-19 14:19 GISServer\WebRoot\me
............此处省略28个文件信息
相关资源
- Guava 19 API ( CHM格式 )
- 用java生成二维码图片(dm格式的)
- 科大讯飞春招秋招面试java基础题
- 中国象棋人机对弈android游戏源代码
- 国际象棋源代码-JAVA
- 基于JSP+SQLServer的个人博客_附带数据库
- Javaweb点餐系统75819
- 个人博客 java web
- java项目之餐饮管理系统
- JAVA工资管理系统毕业论文
- Java学生信息管理系统源码,源代码系
- javaweb 课程大作业——慕课答疑平台,
- 基于Jsp 网络在线考试系统源码,Jav
- 工作5年精心整理_Java常用工具类源码
- Professional Java Development with the Spring
- JAVA编写的医疗管理系统
- JavaEE struts2综合小案例
- javaweb大型项目——交易撮合系统
- 基于Java web开发的图书管理系统
- 纯Java编写的双色球分析选号软件
- swt人事管理系统.zip
- 基于Java的医院住院管理系统
- 基于JavaWeb的作业管理系统
- JAVA仿QQ聊天71357
- java毕业设计:简单Java教务管理系统
- java版植物资源管理系统
- Java最强混淆放破解利器Zelix KlassMast
- java swing中文帮助文档
- 点数据的核密度分析
- 摄影平台系统 java毕业设计
评论
共有 条评论