多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
## 绑定 hibernate 提供了此方法,不用自己去手写了. 特点: 1. 默认关闭,需要配置开启 . ~~~ <property name="hibernate.current_session_context_class">thread</property> //开启,从当前线程中获取session ~~~ 2. 会自动关闭连接. ## 代码 ~~~ SessionFactory sessionFactory = Hibernate.getSessionFactory(); Session currentSession = sessionFactory.getCurrentSession(); Transaction tx = currentSession.beginTransaction(); //TODO tx.commit(); ~~~