我使用的是 hibernate 5.2 的版本, 更具前面大神们的指点修改了测试类中创建会话的那部分,但程序运行到事务提交是还是会出错,将cfg.xml 中的方言改为<property name="dialect">org.hibernate.dialect.MySQL5Dialect</property>这样就好了,
参考http://www.cnblogs.com/jinjiyese153/p/6902859.html
参考http://www.cnblogs.com/jinjiyese153/p/6902859.html
2017-09-13
keperl 4.3.2:的下载http://sourceforge.net/projects/jboss/files/JBossTools/JBossTools4.1.x/jbosstools-Update-4.1.2.Final_2014-03-18_15-46-19-B706.zip
2017-09-07
4:10的那一段 Hibernate5.0.2之后的版本用这个
ServiceRegistry serviceRegistry= new StandardServiceRegistryBuilder().applySettings(configuration.getProperties()).build();
ServiceRegistry serviceRegistry= new StandardServiceRegistryBuilder().applySettings(configuration.getProperties()).build();
2017-09-04
可以在hibernate的配置文件中添加配置使transaction能自动提交。
<property name="hibernate.connection.autocommit">true</property>
<property name="hibernate.connection.autocommit">true</property>
2017-09-02