postgresql – 使用Postgres与Grails

前端之家收集整理的这篇文章主要介绍了postgresql – 使用Postgres与Grails前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有人与Postgres一起工作?我使用这个 tutorial,一切似乎都是有道理的,对我来说是正确的。但是当我’grails run-app’我得到这个错误
Cannot create JDBC driver of class 'org.postgresql.Driver' for connect URL 'jdbc:postgres://10.0.0.21/tribes'
java.sql.sqlException: No suitable driver

我的DataSource文件

dataSource {
    pooled = true
    driverClassName = "org.postgresql.Driver"
    dialect = org.hibernate.dialect.PostgresqlDialect
}
hibernate {
    cache.use_second_level_cache=true
    cache.use_query_cache=true
    cache.provider_class='com.opensymphony.oscache.hibernate.OSCacheProvider'
}
// environment specific settings
environments {
    development {
        dataSource {
            dbCreate = "update"
            url = "jdbc:postgres://10.0.0.21:5432/tribes"
            username = "grails"
            password = "grails"
        }   
    }   
    test {
        dataSource {
            dbCreate = "update"
            url = "jdbc:postgres://10.0.0.21:5432/tribes"
            username = "grails"
            password = "grails"
        }   
    }   
    production {
        dataSource {
            dbCreate = "update"
            url = "jdbc:postgres://10.0.0.21:5432/tribes"
            username = "grails"
            password = "grails"
        }   
    }   
}
FAQ:“[如果]你得到一个运行时错误,说”找不到合适的驱动程序“,很可能传递给DriverManager.getConnection的URL格式不正确或者其他方式不正确。那么你的问题怎么了?那么教程中的例子如下所示:
jdbc:postgresql://localhost:5432/grails

你的样子如下所示:

jdbc:postgres://10.0.0.21:5432/tribes

我猜那些错过两封信的人正在造成你的麻烦。

原文链接:https://www.f2er.com/postgresql/193226.html

猜你在找的Postgre SQL相关文章