spring boot数据jpa无法连接到mysql数据库

时间:2016-07-28 10:53:37

标签: java hibernate spring-boot

我尝试使用spring-boot-starter-data-jpa连接到mysql并通过this example进行休眠但是获取

  

...
  2016-07-28 13:20:49.021 ERROR 7765 --- [main] o.s.boot.SpringApplication:应用程序启动失败   org.springframework.beans.factory.BeanCreationException:错误   用名字创建bean   'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration':   注入自动连接的依赖项失败;嵌套异常是   org.springframework.beans.factory.BeanCreationException:不能   autowire字段:private javax.sql.DataSource   org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration.dataSource;   嵌套异常是   org.springframework.beans.factory.BeanCreationException:错误   在类路径资源中定义名为'dataSource'的bean   [组织/ springframework的的/ boot /自动配置/ JDBC / DataSourceAutoConfiguration $ NonEmbeddedConfiguration.class]:   通过工厂方法进行Bean实例化失败;嵌套异常是   org.springframework.beans.BeanInstantiationException:失败   实例化[javax.sql.DataSource]:工厂方法'dataSource'抛出   例外;嵌套异常是   org.springframework.boot.autoconfigure.jdbc.DataSourceProperties $ DataSourceBeanCreationException:   无法确定数据库类型的嵌入式数据库驱动程序类   没有。如果你想要一个嵌入式数据库,请放一个支持的数据库   类路径。如果您要从a加载数据库设置   您可能需要激活它的特定配置文件(没有配置文件   目前有效)

     

...

application.properties:

    # DataSource settings: set here your own configurations for the database 
# connection. In this example we have "netgloo_blog" as database name and 
# "root" as username and password.
spring.datasource.url = jdbc:mysql://localhost:3306/db
spring.datasource.username = db
spring.datasource.password = pass

spring.datasource.driver-class-name=com.mysql.jdbc.Driver

# Keep the connection alive if idle for a long time (needed in production)
spring.datasource.testWhileIdle = true
spring.datasource.validationQuery = SELECT 1

# Show or not log for each sql query
spring.jpa.show-sql = true

# Hibernate ddl auto (create, create-drop, update)
spring.jpa.hibernate.ddl-auto = update

# Naming strategy
spring.jpa.hibernate.naming-strategy = org.hibernate.cfg.ImprovedNamingStrategy

# Use spring.jpa.properties.* for Hibernate native properties (the prefix is
# stripped before adding them to the entity manager)

# The SQL dialect makes Hibernate generate better SQL for the chosen database
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5Dialect

eclipse中的项目结构:

enter image description here

build.gradle:

 buildscript {
  repositories {
        mavenCentral()
  }
  dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-  plugin:1.3.6.RELEASE")
  }
}

apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'spring-boot'

jar {
    baseName = 'gs-accessing-data-jpa'
    version =  '0.1.0'
}

repositories {
    mavenCentral()
    maven { url "https://repository.jboss.org/nexus/content/repositories/releases" }
}

sourceCompatibility = 1.8
targetCompatibility = 1.8

dependencies {
    compile("org.springframework.boot:spring-boot-starter-data-jpa")
    compile group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: '1.3.6.RELEASE'
    compile group: 'mysql', name: 'mysql-connector-java', version: '6.0.3' 

   //also tried

    runtime group: 'mysql', name: 'mysql-connector-java', version: '6.0.3' 
    runtime "org.apache.tomcat:tomcat-jdbc:7.0.47"

    testCompile("junit:junit")
}

task wrapper(type: Wrapper) {
    gradleVersion = '2.3'
}

3 个答案:

答案 0 :(得分:3)

您没有添加驱动程序类

spring.datasource.driver类名= com.mysql.jdbc.Driver

<dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-data-jpa</artifactId>
    </dependency>

    <dependency>
        <groupId>mysql</groupId>
        <artifactId>mysql-connector-java</artifactId>
        <scope>runtime</scope>
    </dependency>

检查这些依赖关系

答案 1 :(得分:0)

你可以在gradle中添加运行时依赖项,而不是在MYSQL驱动程序jar上编译时间依赖吗?

dependencies {
  //compile "mysql:mysql-connector-java:6.0.3"
  runtime "mysql:mysql-connector-java:6.0.3"
  runtime "org.apache.tomcat:tomcat-jdbc:7.0.47"
}

答案 2 :(得分:-1)

你是否在类路径上有数据库驱动程序? 你有设置属性 spring.datasource.driver-class-name

有关详细信息,请参阅 http://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-sql.html