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 settingsenvironments { 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
我猜那些错过两封信的人正在造成你的麻烦。
总结以上是内存溢出为你收集整理的postgresql – 使用Postgres与Grails全部内容,希望文章能够帮你解决postgresql – 使用Postgres与Grails所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)