Hibernate工作原理(1)
這兩天再看hibernate,就自己總結了hibernate對jdbc的封裝過程。
1.通過Configuration().configure();讀取并解析hibernate.cfg.xml配置文件2.由hibernate.cfg.xml中的<mapping resource="com/xx/User.hbm.xml"/>讀取并解析映射信息
3.通過config.buildSessionFactory();//創建SessionFactory
4.sessionFactory.openSession();//打開Sesssion
5.session.beginTransaction();//創建事務Transation
6.persistent operate持久化操作
7.session.getTransaction().commit();//提交事務
8.關閉Session
9.關閉SesstionFactory
這里是沒有使用配置文件,手寫的文件:
public int updateDm_bm(String str){ int resu=0; //獲取會話工廠 SessionFactory sf=this.getSessionFactory(); //獲取SessionFactory的會話。SessionFactory接口:SessionFactroy接口負責初始化Hibernate。它充當數據存儲源的代理,并負責創建Session對象 Session session=(Session)this.getSessionFactory().getCurrentSession(); sf.openSession(); //開始事務 Transaction t=session.beginTransaction(); Query query =session.createQuery(str); //提交事務 resu=query.executeUpdate(); // Query.executeUpdate()方法返回的整型值表明了受此操作影響 return resu; }
其實我的IDE是Myeclipes的里面有自動生成hibernate文件的工具。仔細的看看系統自動生成的代碼:
配置文件:
<hibernate-configuration> <session-factory> <property name="connection.username">root</property> <property name="connection.url"> jdbc:mysql://10.5.110.239:3306/test </property> <property name="dialect"> org.hibernate.dialect.MySQLDialect </property> <property name="myeclipse.connection.profile">root</property> <property name="connection.password">chen</property> <property name="connection.driver_class"> com.mysql.jdbc.Driver </property> <mapping resource="DAO/User.hbm.xml" /> </session-factory> </hibernate-configuration>映射文件:
<hibernate-mapping> <class name="DAO.User" table="user" catalog="test"> <id name="id" type="java.lang.Integer"> <column name="id" /> <generator class="assigned" /> </id> <property name="username" type="java.lang.String"> <column name="username" length="32" /> </property> <property name="password" type="java.lang.String"> <column name="password" length="32" /> </property>POJO文件和DAO文件:
public void save(User transientInstance) { log.debug("saving User instance"); try { getSession().save(transientInstance); log.debug("save successful"); } catch (RuntimeException re) { log.error("save failed", re); throw re; } }SessionFactory和Session類文件:就是建立加載配置文件,數據庫連接,打開事務等操作:
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; }
總結
以上是生活随笔為你收集整理的Hibernate工作原理(1)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: uac怎么打开
- 下一篇: python之函数用法__setattr