版本问题解决后报异常ERROR: HHH000346: Error during managed flush [org.hibernate.exception.SQLGrammarException: could not execute statement]
结果是因为student表不存在,为什么我的hibernate不能自动创建表?
结果是因为student表不存在,为什么我的hibernate不能自动创建表?
2016-06-27
老师上传的hibernate jar包是5版本以上,无法使用ServiceRegistryBuilder,5版本以上不用使用ServiceRegistry,直接使用Configuration configure = new Configuration().configure();
sessionFactory = configure.buildSessionFactory(); 不然一直报org.hibernate.MappingException: Unknown entity的错误,纠结死了。
sessionFactory = configure.buildSessionFactory(); 不然一直报org.hibernate.MappingException: Unknown entity的错误,纠结死了。
2016-06-27