当前位置: 代码迷 >> J2EE >> hibernate 中获取 jdbc connection解决方法
  详细解决方案

hibernate 中获取 jdbc connection解决方法

热度:109   发布时间:2016-04-22 01:41:59.0
hibernate 中获取 jdbc connection
Session session = this.getHibernateTemplate().getSessionFactory().openSession();
Connection conn=session.connection();
这里 connection()为什么不能用,connection 被画了一条线,用的是myeclipse

------解决方案--------------------
你既然用的是getHibernateTemplate(),干嘛不用hibernate还用JDBC?
  相关解决方案