我正在尝试使用gradle任务设置数据库。但是我没有运气找到postgresql JDBC驱动程序。在java项目中,它找到驱动程序并运行正常(但它不会通过buildscript获得依赖),而不是gradle.build文件。
我尝试使用groovy.sql,并遇到了同样的错误。
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'org.postgresql:postgresql:42.2.0'
}
}
import java.sql.*
task testTask {
...
此行引发错误: 找不到合适的jdbc驱动程序:postgresql:// localhost:5432 / db
Connection conn = DriverManager.getConnection(db.url, db.user, db.password)
...
}
答案 0 :(得分:4)
我从Evelino Bomitali的post得到了答案。他解释说简洁。请检查他引用的帖子。
我在Postgresql中使用的代码:
import groovy.sql.Sql
task queryTest () {
configurations {
jdbc
}
dependencies {
jdbc 'org.postgresql:postgresql:42.2.0'
}
doLast {
def sqlClassLoader = Sql.classLoader
configurations.jdbc.each { sqlClassLoader.addURL it.toURI().toURL() }
def driver = 'org.postgresql.Driver'
def dburl = "jdbc:postgresql://localhost:5432/testdb"
def first
Sql.withInstance(dburl, 'tester', 'password', driver) {
sql ->
first = sql.firstRow( "SELECT * FROM users" )
}
}
}
现在不必在任务之前声明Buildscript,因为依赖关系在任务中得到解决。