hibernate 本地线程绑定session

1.在hibernate.cfg.xml中加入:

        <property name="hibernate.current_session_context_class">thread</property> 

2.在sessionFactory方法中获取
在UserUntil.java中加入

    //返回与本地线程绑定的session的方法
    public static Session getSessionobj(){
        return sessionFactory.getCurrentSession();
    }

3.UserTrans.java

package cn.hiber;

import org.hibernate.Session;
/*import org.hibernate.SessionFactory;*/
import org.hibernate.Transaction;
import org.junit.Test;

public class UserTrans {
        @Test
        public void testTx(){
            /*SessionFactory sessionFactory=null;*/
            Session session=null;
            Transaction tx=null;
            try {
/*              sessionFactory=UserUntil.getSessionFactory();
                session=sessionFactory.openSession();*/

                //获取本地线程绑定的session
                session=UserUntil.getSessionobj();
                //开始事务
                tx=session.beginTransaction();

                //添加
                User user=new User();
                user.setUsername("qqqqeww");
                user.setPassword("12345");
                session.save(user);

                //提交事务
                tx.commit();
            } catch (Exception e) {
                tx.rollback();
            }/*finally{
                session.close();
                sessionFactory.close();
            }*/
        }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值