码迷,mamicode.com
首页 > 数据库 > 详细

hibernateTemplate获取jdbc数据库连接

时间:2015-08-13 20:19:59      阅读:400      评论:0      收藏:0      [点我收藏+]

标签:java

	@Test
	public void test(){
		//获取刷新模式
		this.getHibernateTemplate().getSessionFactory().openSession().setCacheMode(cachemode);
		//获取查询条件
		this.getHibernateTemplate().getSessionFactory().getCurrentSession().createCriteria(class1);
		//获取数据库connection连接
		this.getHibernateTemplate().getSessionFactory().getCurrentSession().connection();
		//获取数据库connection连接sessionFactory 强转为SessionFactoryImplementor获取数据库连接
		((SessionFactoryImplementor)(this.getHibernateTemplate().getSessionFactory())).getConnectionProvider().getConnection();
	}
	
	
	spring封装的hibernateTemplate对象 进行jdbc操作.此处获取的sessionFactory就是hibernate的sessionFactory对象。


hibernateTemplate获取jdbc数据库连接

标签:java

原文地址:http://yjm199.blog.51cto.com/4408395/1684419

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!