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

时间:2015-08-15 19:54:54

标签: java mysql hibernate jpa jetty

编辑:我已经完成了No suitable driver found for 'jdbc:mysql://localhost:3306/mysql以及其他一些关于SO的问题。但我的问题在任何地方都没有回答。它是不同的。

我使用Jetty,Maven和Hibernate连接到MySQL。 这是我的src / main / resources / META-INF / persistence.xml文件:

c

我使用MySQL的数据库是MySQL附带的默认数据库,称为world。 这是MySQL工作台的截图。 enter image description here

然而,我无法连接。

我在项目中的依赖关系是:

<persistence xmlns="http://java.sun.com/xml/ns/persistence"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd"
        version="2.0">

    <persistence-unit name="world">
      <provider>org.hibernate.jpa.HibernatePersistenceProvider</provider>

      <properties>
        <!-- 
        <property name="javax.persistence.jdbc.driver" value="com.mysql.jdbc.Driver"/>
         -->
        <property name="hibernate.dialect" value="org.hibernate.dialect.MySQLDialect" />
        <property name="javax.persistence.jdbc.url" value="jdbc:mysql://localhost:3306/world"/>
        <property name="javax.persistence.jdbc.user" value="root"/>
        <property name="javax.persistence.jdbc.password" value="password"/>
        <property name="hibernate.show_sql" value="true"/>
        <property name="hibernate.format_sql" value="true"/>
      </properties>
    </persistence-unit>
</persistence>

请帮忙!

0 个答案:

没有答案