可以在hibernate的配置文件中添加配置使transaction能自动提交。
<property name="hibernate.connection.autocommit">true</property>
<property name="hibernate.connection.autocommit">true</property>
2017-09-02
用idea 看着里http://blog.csdn.net/violet_echo_0908/article/details/50839373
2017-08-30
用hibernate 5.1+MyEclipse的同学不要忘记在配置configuration后加一句config.addClass(Students.class);
2017-08-27
这篇文章可以解决大部分人的问题http://blog.csdn.net/xuebing1995/article/details/72830294
2017-08-27
最赞回答 / 追梦82
hibernate.cfg.xml中<mapping resource="包名/Students.hbm.xml"/>这样就可以了;而且报名如果是com.xxx.xxxx的话,则应该写成<mapping resource="com/xxx/xxxx/Students.hbm.xml"/>
2017-08-26