web-dev-qa-db-fra.com

Le démarrage de printemps ne parvient pas à charger DataSource à l'aide du pilote PostgreSQL

J'ai développé avec succès un prototype utilisant Spring Boot 1.0.2.RELEASE (était 1.0.1.RELEASE jusqu'à aujourd'hui).

J'ai recherché et recherché et essayé des solutions telles que: la configuration automatique de la source de données jdbc Spring Boot échoue sur Tomcat autonomeSpring Boot/Spring Data import.sql ne fonctionne pas Spring-Boot-1.0.0. RC1

Ils suggèrent tous de laisser Spring Boot faire le travail. Lorsque j'utilise H2, tout fonctionne, mais lorsque j'essaie de passer à PostgreSQL, j'obtiens:

Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [org/springframework/boot/autoconfigure/orm/jpa/HibernateJpaAutoConfiguration.class]: Instantiation of bean failed; nested exception is org.springframework.beans.factory.BeanDefinitionStoreException: Factory method [public org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration.entityManagerFactory(org.springframework.orm.jpa.JpaVendorAdapter)] threw exception; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [javax.sql.DataSource] is defined

Mon build.gradle est le suivant:

loadConfiguration()

def loadConfiguration() {
def environment = hasProperty('env') ? env : 'dev'
project.ext.envrionment = environment
println "Environment is set to $environment"

def configFile = file('config.groovy')
def config = new ConfigSlurper("$environment").parse(configFile.toURL())
project.ext.config = config
}

buildscript {
ext {
    springBootVersion = '1.0.2.RELEASE'
}
repositories {
    mavenCentral()
}
dependencies {
    classpath("org.springframework.boot:spring-boot-gradle-   plugin:${springBootVersion}")
}
}

apply plugin: 'Java'
apply plugin: 'Eclipse'
apply plugin: 'idea'
apply plugin: 'spring-boot'
apply plugin: 'war'
apply plugin: 'groovy'

war {
baseName = 'test'
version =  '0.0.1-SNAPSHOT'
}

configurations {
providedRuntime
}

repositories {
mavenCentral()
}

dependencies {
compile("org.springframework.boot:spring-boot-starter-web:${springBootVersion}")
compile("org.springframework.boot:spring-boot-starter-thymeleaf:${springBootVersion}")

compile("org.springframework.boot:spring-boot-starter-jdbc:${springBootVersion}")
compile("org.springframework.boot:spring-boot-starter-data-jpa:${springBootVersion}")
compile("postgresql:postgresql:9.1-901.jdbc4")
//compile("com.h2database:h2")

testCompile("org.springframework.boot:spring-boot-starter-test:${springBootVersion}")

}

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

application.properties:

spring.jpa.database=POSTGRESQL
spring.jpa.show-sql=false
spring.jpa.hibernate.ddl-auto=update

spring.database.driverClassName=org.postgresql.Driver
spring.datasource.url=jdbc:postgresql://localhost/cms
spring.datasource.username=cms
spring.datasource.password=NA

Suppression de application.properties et modification de la dépendance à H2 et tout est OK.

Je ne trouve pas où je me trompe :-(

19
mamruoc

D'où est-ce que sa vient: database.driverClassName=org.postgresql.Driver? Tu ne veux pas dire spring.datasource.driverClassName?

21
Dave Syer

essayez de réimporter votre projet maven si les dépendances ne sont pas actualisées, ajoutez également le suivant à votre pom.xml

 <dependency>
            <groupId>postgresql</groupId>
            <artifactId>postgresql</artifactId>
            <version>9.1-901.jdbc4</version>
</dependency>
0
Pravin