Hibernate 配置文件问题,一直报错不知什么原因?请高手解决一下

创建会话工厂失败org.hibernate.HibernateException:Couldnotparseconfiguration:/hibernate.cfg.xm... 创建会话工厂失败
org.hibernate.HibernateException: Could not parse configuration: /hibernate.cfg.xml
at org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1418)
at org.hibernate.cfg.Configuration.configure(Configuration.java:1352)
at com.mr.hibernate.HibernateInitialize.<clinit>(HibernateInitialize.java:19)
at com.mr.main.AddProduct.main(AddProduct.java:24)
Caused by: org.dom4j.DocumentException: Error on line 11 of document : The string "--" is not permitted within comments. Nested exception: The string "--" is not permitted within comments.
at org.dom4j.io.SAXReader.read(SAXReader.java:482)
at org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1408)
... 3 more
创建会话工厂失败
org.hibernate.HibernateException: Could not parse configuration: /hibernate.cfg.xml
at org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1418)
at org.hibernate.cfg.Configuration.configure(Configuration.java:1352)
at com.mr.hibernate.HibernateInitialize.rebuildSessionFactory(HibernateInitialize.java:48)
at com.mr.hibernate.HibernateInitialize.getSession(HibernateInitialize.java:35)
at com.mr.main.AddProduct.main(AddProduct.java:24)
Caused by: org.dom4j.DocumentException: Error on line 11 of document : The string "--" is not permitted within comments. Nested exception: The string "--" is not permitted within comments.
at org.dom4j.io.SAXReader.read(SAXReader.java:482)
at org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1408)
... 4 more
Exception in thread "main" java.lang.NullPointerException
at com.mr.main.AddProduct.main(AddProduct.java:29)

Hibernate.cfg.xml
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"

<hibernate-configuration>
<session-factory>
<property name="connection.driver_class">com.microsoft.sqlserver.jdbc.SQLServerDriver</property> <!-- 数据库驱动类 -->
<property name="connection.url">jdbc:sqlserver://localhost:1433;DatabaseName=db_database_product</property> <!-- 数据库连接的URL -->
<property name="connection.username">sa</property> <!-- 数据库连接的用户名 -->
<property name="connection.password">123456789</property> <!-- 数据库连接的密码>
<!-- SQL数据库方言SQLServer -->
<property name="dialect">org.hibernate.dialect.SQLServerDialect</property>
<property name="show_sql">true</property> <!-- 打印SQL语句 -->
<!-- 映射文件 -->
<mapping resource="com/mr/product/Product.hbm.xml"/>
</session-factory>

</hibernate-configuration>
展开
 我来答
mikemelon2012
2015-06-17 · TA获得超过3633个赞
知道大有可为答主
回答量:938
采纳率:87%
帮助的人:391万
展开全部

你的hibernate.cfg.xml有错,

你注意一下<!-- 数据库连接的密码>这句,应该是<!-- 数据库连接的密码-->,少了两个--号

<?xml version='1.0' encoding='UTF-8'?> 
<!DOCTYPE hibernate-configuration PUBLIC  
        "-//Hibernate/Hibernate Configuration DTD 3.0//EN"  
<hibernate-configuration>
  <session-factory>
    <property name="connection.driver_class">com.microsoft.sqlserver.jdbc.SQLServerDriver</property>  <!-- 数据库驱动类 -->
    <property name="connection.url">jdbc:sqlserver://localhost:1433;DatabaseName=db_database_product</property> <!-- 数据库连接的URL -->
    <property name="connection.username">sa</property>  <!-- 数据库连接的用户名 -->
    <property name="connection.password">123456789</property> <!-- 数据库连接的密码-->
    <!-- SQL数据库方言SQLServer -->
    <property name="dialect">org.hibernate.dialect.SQLServerDialect</property>
    <property name="show_sql">true</property> <!-- 打印SQL语句 -->
    <!-- 映射文件 -->
    <mapping resource="com/mr/product/Product.hbm.xml"/>
</session-factory>
</hibernate-configuration>
熙七年吩b3
2015-06-17 · TA获得超过101个赞
知道小有建树答主
回答量:66
采纳率:0%
帮助的人:57.6万
展开全部
你的注释出了问题 应该将 <!-- 数据库连接的密码> 改成<!-- 数据库连接的密码 -->

别忘了注释是 <!-- -->哦,你缺少了后面那两个--
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式