按照老师 所述 , <component name="address" class="com.dg.Address">
<property name="postcode" column="POSTCODE"></property>
<property name="phone" column="PHONE"></property>
<property name="address" column="ADDRESS"></property>
</component>
<property name="postcode" column="POSTCODE"></property>
<property name="phone" column="PHONE"></property>
<property name="address" column="ADDRESS"></property>
</component>
2016-11-01
当我进行testSaveStudentWithCurrentSession方式时会抛出org.hibernate.SessionException: Session is closed!错误
2016-11-01
我来说一下我的错误,3个,第一次个我没有把Hibernate.cfg.xml里面的created换成update,第二个是我的创建的照片导入的包不对,应该是import java.sql.Blob;我导入错误了,并且生成Student.hbm.xml也是错误的,第三个是主键错误,报ERROR: Duplicate entry '1' for key 'PRIMARY'错误,包主键改了就可以了。
2016-10-31
看见很多慕友说无法自动创建Students表,试试在 Configuration config=new Configuration().configure();后面加上这两行就能自动创建了 SchemaExport se=new SchemaExport(config);
se.create(true,true);
se.create(true,true);
2016-10-31