错误:没有为jdbc找到合适的驱动程序:mysql:// localhost:3306 / test

时间:2016-02-04 17:47:27

标签: java mysql hibernate

我没有得到合适的驱动程序异常。未创建连接。

package org.srtmun.student.dao.impl;
import javax.transaction.Transaction;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
import org.srtmun.student.dao.RegestrationDAO;
import org.srtmun.student.hibernateplugin.HibernatePlug;
import org.srtmun.student.model.Registration;

public class RegistrationDaoImpl implements RegestrationDAO{
    public void addStudent(Registration register) {
        System.out.println("RegistrationDaoImpl class1");
        SessionFactory factory = HibernatePlug.getFactory();
        System.out.println("1");
        Session session=factory.openSession();
        org.hibernate.Transaction tx=session.beginTransaction();
        session.save(register);
        tx.commit();
        session.close();
    }
}  


<?xml version='1.0' encoding='utf-8'?>

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

<hibernate-configuration>
  <session-factory>
    <property name="hibernate.connection.password">123</property>
    <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/test</property>
    <property name="hibernate.connection.username">root</property>
    <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
    <mapping resource="Registration.hbm.xml" />
  </session-factory>
</hibernate-configuration>

这是我的代码,我面临同样的问题。

1 个答案:

答案 0 :(得分:1)

您需要将此属性添加到hibernate.cfg.xml

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

你需要在课程路径上有mysql-connector-java jar

您的交易代码不正确(例如,您不使用回滚)。请参阅this了解如何正确使用它。