Gradle project - не удалось настроить атрибут DataSource'url 'не указан и не может быть настроен встроенный источник данных - PullRequest
0 голосов
/ 11 октября 2018

Пытался следовать руководству в https://spring.io/guides/gs/accessing-data-mysql/, однако, когда я запускаю свое Java-приложение, оно показывает ошибку:

Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.

Reason: Failed to determine a suitable driver class


Action:

Consider the following:
    If you want an embedded database (H2, HSQL or Derby), please put it on the classpath.
    If you have database settings to be loaded from a particular profile you may need to activate it (no profiles are currently active).

Вот мое приложение .property:

spring.jpa.hibernate.ddl-auto=create
spring.datasource.url=jdbc:mysql://localhost:3306/db_currency
spring.datasource.username=springuser
spring.datasource.password=ThePassword

Создание базы данных следовало указаниям:

mysql> create database db_example; -- Create the new database
mysql> create user 'springuser'@'localhost' identified by 'ThePassword'; 
mysql> grant all on db_example.* to 'springuser'@'localhost';

А мой build.gradle:

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

apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'

bootJar {
    baseName = 'gs-accessing-data-mysql'
    version =  '0.1.0'
}

repositories {
    mavenCentral()
}

sourceCompatibility = 1.8
targetCompatibility = 1.8

dependencies {
    compile("org.springframework.boot:spring-boot-starter-web")

    // JPA Data (We are going to use Repositories, Entities, Hibernate, etc...)
    compile 'org.springframework.boot:spring-boot-starter-data-jpa'

    // Use MySQL Connector-J
    compile 'mysql:mysql-connector-java'

    testCompile('org.springframework.boot:spring-boot-starter-test')
}

1 Ответ

0 голосов
/ 13 февраля 2019

Из исследования есть несколько ответов на эту проблему, которая работает для других людей, и в моем случае добавление этого в файл application.properties сработало:

spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.PostgreSQL94Dialect
...