• 大小: 4.33MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-09-17
  • 语言: Java
  • 标签: java  

资源简介

这是一个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\.mymetadata
     文件        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.xml
     文件          26  2012-09-19 14:19  GISServer\src\struts.properties
     文件         373  2012-09-19 14:19  GISServer\src\struts.xml
     目录           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\meta-INF\
............此处省略28个文件信息

评论

共有 条评论