解析下HibernateSessionFactory.java

democreen 2011-01-07 05:04:58

package org.xmh.db;

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<Session> threadLocal = new ThreadLocal<Session>();
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 <code>SessionFactory</code> 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) {
HibernateSessionFactory.configFile = configFile;
sessionFactory = null;
}

/**
* return hibernate configuration
*
*/
public static Configuration getConfiguration() {
return configuration;
}

}





学习hibernate,我现在想从自己手上的一个hibernate+spring的web实例去解读,零基础开始学习hibernate+spring

只要能尽快学会使用,或者能给我提供帮助的,我都给分,
我的疑问:
这个文件是自动生成还是手写的,自动生成的话,请给我详细说说如何自动生成,对于我来讲,参照这个自己也是手敲,
如果是手写,能跟我注释下,让我看明白也行,
关于这个文件的用途以及用到的要点,或者如何去理解,也行,回头我看看大家的意见,谢谢大家。


第二个问题:
String sqlquery = "from Person ";
//该方法用来打印Person表中的所有的用户名
//该语句用来通过HibernateTemplate来查询Person表中的所有记录
List list = this.getHibernateTemplate().find(sqlquery);
System.out.println("表中的数据有: " + list.size() + " 条");
...

List list = this.getHibernateTemplate().find(sqlquery);


跟我讲一下,getHibernateTemplate().find("from Person")
什么意思?讲具体点.
...全文
499 5 打赏 收藏 转发到动态 举报
写回复
用AI写文章
5 条回复
切换为时间正序
请发表友善的回复…
发表回复
ccycxy123 2011-01-09
  • 打赏
  • 举报
回复
给你说你到网上去找个ssh整合的视屏来看看就好了……不过我觉得你要想用hibernate+spring的话,你要明白orm,aop,ioc……不然你只学会现在你看的这个对你来说只是会套用而已,实际开发中你必须要对这些有所了解才能让程序的开发更加合理……希望对你有所帮助。
凡是都是从开始做起走的,不急不躁就好了……
democreen 2011-01-08
  • 打赏
  • 举报
回复
[Quote=引用 2 楼 wangju309 的回复:]
先理解一下spring注入功能,HibernateSessionFactory一般配置在sping配置文件中
学习最快的方法就是找个简单教程,照着做一遍,理解一下都是怎么回事
getHibernateTemplate().find("from Person")
Person实体对应的表需要在hbm.xml文件中配置
hibernate自动解析文件找到表查询数据
[/Quote]

你说的我明白,我今天就是自己动手写了一个,还行,但是对有的地方还是一知半解,比如说:比如说

HibernateSessionFactory.java 这个文件我是真的真的,想有人给我注释下, 哎,其他的问题我百度,谷歌都搞定了,现在就是这个HibernateSessionFactory文件,知道多少都可以过来说两句,
自己敲一遍或者敲点代码,确实是不一样,努力,努力!
神马都是浮云,只有动手才给力!
alongines 2011-01-08
  • 打赏
  • 举报
回复
1 创建Configuration对象
2 加载hibernate.cfg.xml文件
3 创建sessionFactory对象
4 得到Session
5 关闭Session
wangju309 2011-01-07
  • 打赏
  • 举报
回复
先理解一下spring注入功能,HibernateSessionFactory一般配置在sping配置文件中
学习最快的方法就是找个简单教程,照着做一遍,理解一下都是怎么回事
getHibernateTemplate().find("from Person")
Person实体对应的表需要在hbm.xml文件中配置
hibernate自动解析文件找到表查询数据
democreen 2011-01-07
  • 打赏
  • 举报
回复
在spring的配置文件中,随处都可以见到


<!-- 这是第一个例子的Spring配置 -->
<bean id="userbiz" class="org.xmh.biz.PersonBiz">
<property name="sessionFactory">
<ref local="sessionFactory"/>
</property>
</bean>
<!-- 这是第二个例子的Spring配置 -->
<bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory">
<ref local="sessionFactory"/>
</property>
</bean>
<bean id="userDaoTarget" class="org.xmh.biz.PersonBizImpl">
<property name="sessionFactory">
<ref local="sessionFactory"/>
</property>
</bean>

所以search到上面的文件HibernateSessionFactory.java中,希望给予解答,我自己也在google,baidu,谢谢大家,

没人理我吗?

67,550

社区成员

发帖
与我相关
我的任务
社区描述
J2EE只是Java企业应用。我们需要一个跨J2SE/WEB/EJB的微容器,保护我们的业务核心组件(中间件),以延续它的生命力,而不是依赖J2SE/J2EE版本。
社区管理员
  • Java EE
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧