运行junit测试用例时给出错误 org.hibernate.dialect.OracleDialect oracle.jdbc.OracleDriver JDBC:预言:瘦:@localhost:1521:XE SR SR
答案 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>