liquibase gradle postgresql 错误的驱动程序



环境:

  • 弹簧启动 (STS 3.9.1)
  • 格拉德尔 2.13
  • Postgresql 9.6.5
  • Liquibase Gradle 插件 (liquibase-gradle-plugin:1.2.4)

场景:

我们有一个 Spring boot rest api,我们希望它有一个 CI 进程,可以在进程的某个阶段更新数据库,为此我们想为 它使用 gradle

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath('org.springframework.boot:spring-boot-gradle-plugin:1.5.7.RELEASE')
// tag::build[]
        classpath('se.transmode.gradle:gradle-docker:1.2')
// end::build[]
        classpath('org.liquibase:liquibase-gradle-plugin:1.2.4')
        classpath('org.postgresql:postgresql:42.1.4')
    }
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
// tag::plugin[]
apply plugin: 'docker'
// end::plugin[]
apply plugin: 'org.liquibase.gradle'
bootRun {
    systemProperty 'spring.profiles.active', System.properties['spring.profiles.active']
}

def changeLog = "$projectDir/src/main/resources/db/db.changelog-master.yaml"
task('dev') << {
println 'executing dev'
liquibase{
    activities {
        main {
        changeLogFile changeLog
        url 'postgresql://localhost/mydatabase'
        username 'postgres'
        password 'mysecret'
        driver 'org.postgresql.Driver'
        }
    }
}
}
jar {
    baseName = 'applicationTestLiquibasegradle'
    version =  '0.0.3'
}
// This is used as the docker image prefix (org)
group = 'com.cropmetrics'
version = '0.0.3'
sourceCompatibility = 1.8
// tag::task[]
task buildDocker(type: Docker, dependsOn: build) {
  applicationName = jar.baseName
  dockerfile = file('Dockerfile')
  doFirst {
    copy {
      from jar
      into "${stageDir}/target"
    }
  }
}
// end::task[]

repositories {
    mavenCentral()
}

dependencies {
  compileOnly('org.projectlombok:lombok:1.16.18')
  compile('org.springframework.boot:spring-boot-starter')
  compile('org.springframework.boot:spring-boot-starter-web')
  compile('org.springframework.boot:spring-boot-starter-data-jpa')
  // JPA Data (We are going to use Repositories, Entities, Hibernate, etc...)
  compile 'org.springframework.boot:spring-boot-starter-data-jpa'
  compile('org.liquibase:liquibase-core')
  compile('org.postgresql:postgresql:42.1.4.jre7')
  testCompile('org.springframework.boot:spring-boot-starter-test')
}

因此,我们创建了一个开发任务来执行它:

gradle task dev update

哪个应该更新数据库

如果我们允许应用程序自动更新数据库,它会很好地工作,但是如果我们想使用 taskt 插件并使用 gradle 任务,我们会收到错误

    * What went wrong:
Execution failed for task ':update'.
> liquibase.exception.LiquibaseException: Unexpected error running Liquibase: liquibase.exception.DatabaseException: Connection could not be created to postgresql://localhost/cropmetricsdatabase with driver org.postgresql.Driver.  Possibly the wrong driver for the given database URL

所以问题似乎与 liquibase-gradle 插件有关。

你的数据库网址看起来有点奇怪。缺少 jdbc 部件和可能的端口号。

从文档中:驱动程序识别以下形式的 JDBC URL:

jdbc:postgresql:database
jdbc:postgresql:/
jdbc:postgresql://host/database
jdbc:postgresql://host/
jdbc:postgresql://host:port/database
jdbc:postgresql://host:port/

相关内容

  • 没有找到相关文章

最新更新