为了账号安全,请及时绑定邮箱和手机立即绑定

无法读取配置文件org.hibernate.HibernateException: Could not parse configuration: /hibernate.cfg.xml

<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"

"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">。


<hibernate-configuration>

    <session-factory>

        <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>

        <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>

        <property name="hibernate.connection.username">root</property>

        <property name="hibernate.connection.password">root</property>

        <property name="hibernate.connection.url">

        <![CDATA[

        jdbc:mysql://localhost:3306/imooc?useUnicode=true&characterEncoding=utf8

        ]]>

        </property>

        <property name="show_sql">true</property>

        <property name="hbm2ddl.auto">update</property>

    

    <!-- 指定映射文件的路径 -->

    <mapping resource="com/imooc/entity/Grade.hbm.xml"/>

    <mapping resource="com/imooc/entity/Student.hbm.xml"/>

    </session-factory>

</hibernate-configuration>


正在回答

1 回答

我用IDEA自动生成的是这样的

<!DOCTYPE hibernate-configuration PUBLIC
   "-//Hibernate/Hibernate Configuration DTD//EN"
   "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">

你试试看啊

1 回复 有任何疑惑可以回复我~
#1

不会啦 提问者

问题解决了,通过和你这一段仔细对比,我才发现,我把映射文件前面那一段放到配置文件来了,复制了你这一段后又发现个其它的小问题,改掉后,就跑起来了(我说这么多,就是想说你的回答对我很有帮助,谢谢你,第一次提问,太紧张了)
2017-01-10 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Hibernate初探之一对多映射
  • 参与学习       42171    人
  • 解答问题       295    个

Hibernate中一对多关联映射配置,以及cascade和inverse属性作用

进入课程

无法读取配置文件org.hibernate.HibernateException: Could not parse configuration: /hibernate.cfg.xml

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信