Franklyn 2016-04-21
1. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'hibernate.你还没有建的表' doesn't exist
在cfg.xml中使用了<property name="hbm2ddl.auto">update</property> ,但是仍然无法自动创建数据表和列,后来发现原来我把id的类型写成了String,改成int就可以啦!
2.cfg.xml文件中报错The content of element type "session-factory" must match "(property*,mapping*,(class-cache|collection-cache)*,event*,listener*)".
他的意思就是mapping必须写在properties后面,
我把
<mapping resource="com/yuzhiyun/User.hbm.xml"/>
<property name="hbm2ddl.auto">update</property>
改成
<property name="hbm2ddl.auto">update</property>
<mapping resource="com/yuzhiyun/User.hbm.xml"/>
就可以啦!
3.org.hibernate.MappingException: Unknown entity
添加<mapping resource="com/yuzhiyun/User.hbm.xml"/>就可以啦,指明hbm.xml的位置,不然找不到实体
4
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
这是方言的配置,可以指定使用的数据库类型,这里使用的是MySql.
最后我把自己的第一个hibernate实例上传上来供初学者使用,注意,请在cfg.xml文件中修改数据库的配置,我的数据库和你的数据库用户名密码可不一样哦。