浏览 3941 次
锁定老帖子 主题:hibernate.cfg.xml问题
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2003-11-05
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN" "http://hibernate.sourceforge.net/hibernate-configuration-2.0.dtd"> <hibernate-configuration> <session-factory> <property name="hibernate.connection.driver_class">org.gjt.mm.mysql.Driver</property> <property name="hibernate.connection.url">jdbc:mysql://10.168.168.163/test?useUnicode=true;characterEncoding=GBK</property> <property name="hibernate.connection.username">root</property> <property name="hibernate.connection.password"></property> <property name="hibernate.connection.pool.size">20</property> <property name="hibernate.dialect">net.sf.hibernate.dialect.MySQLDialect</property> <!-- Mapping files --> <mapping resource="persistence/Stuser.hbm.xml"/> <mapping resource="persistence/Stcolumn.hbm.xml"/> <mapping resource="persistence/Stforum.hbm.xml"/> <mapping resource="persistence/Stmessage.hbm.xml"/> </session-factory> </hibernate-configuration> 这个配置文件运行不了,去掉 <mapping resource="persistence/Stcolumn.hbm.xml"/> <mapping resource="persistence/Stforum.hbm.xml"/> <mapping resource="persistence/Stmessage.hbm.xml"/> 才行,但我有四个表,怎么办? 还有,就是中文乱码。我在论坛里找了,但找不到答案。 谢谢 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2003-11-05
你把相关的表写到同一个mapping文件不就解决问题了吗?
Justine |
|
返回顶楼 | |
发表时间:2003-11-06
hibernate不是不建议这么做吗?
每一个表做一个hbm.xml,清晰一些 |
|
返回顶楼 | |
发表时间:2003-11-06
有没有高手给指点迷津!
|
|
返回顶楼 | |
发表时间:2003-11-11
我的没有这个问题。你四个文件时报什么错呢?
也许是你Stcolumn.hbm.xml等三个hbm有问题吧?都贴出来看看。 |
|
返回顶楼 | |