初始SessionFactory创建failed.org.hibernate.MappingException:配置中的<mapping>元素指定没有已知属性</mapping>

时间:2014-03-18 10:41:13

标签: hibernate junit

运行junit测试用例时给出错误                                org.hibernate.dialect.OracleDialect         oracle.jdbc.OracleDriver         JDBC:预言:瘦:@localhost:1521:XE         SR         SR                     

1 个答案:

答案 0 :(得分:0)

我认为您的问题可能在于hibernate .cfg.xml文件。检查是否有拼写错误。 mysql的默认端口号是3306 。 您的cfg.xml文件应该是这样的。在这个例子中,我使用了mysql。

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-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.url">jdbc:mysql://localhost:port_number_of_database/databasename</property>
    <property name="hibernate.connection.username">your_username</property>
    <property name="hibernate.connection.password">your_password</property>
    <mapping resource="hibernate.hbm.xml"/>
    </session-factory>
</hibernate-configuration>