标签:hibernate
org.hibernate.TransientObjectException: object references an unsaved transient instance - save the transient instance before flushing: cn.itcast.domin.Student“`
在映射文件中添加cascade="save-update"
在根据映射文件自动创建表时出现如下错误
org.hibernate.exception.SQLGrammarException: Table ‘demo.classes‘ doesn‘t exist
在配置文件中添加<property name="hbm2ddl.auto">update</property>
标签:hibernate
原文地址:http://blog.csdn.net/u014682413/article/details/46532723