找不到JDBC-Postgresql的合适驱动程序

时间:2011-10-17 07:29:51

标签: postgresql jdbc

我正在使用“Maven”构建项目。 在Pom.xml中,我为Postgresql添加了依赖项,并且已经下载(根据需要)并且存在于项目的libs /文件夹中

现在我在我的java文件中建立了一个连接,如下所示:

static String userid="postgres", password = "myPassword";
static String url = "jdbc:postgresql:coredb_jfeed6";
static Connection con;
con = DriverManager.getConnection(url,userid, password);

“coredb_jfeed6”是我的数据库名称。

没有编译时错误。但在运行时它会产生以下错误:

   Exception stack is:
    1. No suitable driver found for jdbc:postgresql:coredb_jfeed6 (java.sql.SQLException)
    java.sql.DriverManager:640 (null)
    Could not get JDBC Connection; nested exception is java.sql.SQLException: No suitable driver found for jdbc:postgresql:coredb_jfeed6
    (org.springframework.jdbc.CannotGetJdbcConnectionException)
    org.springframework.jdbc.datasource.DataSourceUtils:80 (null)

Root Exception stack trace:
java.sql.SQLException: No suitable driver found for jdbc:postgresql:coredb_jfeed6
    at java.sql.DriverManager.getConnection(DriverManager.java:640)
    at java.sql.DriverManager.getConnection(DriverManager.java:169)
    at org.springframework.jdbc.datasource.DriverManagerDataSource.getConnectionFromDriverManager(DriverManagerDataSource.java:173)

有人可以帮我解决这个问题。?

1 个答案:

答案 0 :(得分:0)

确定。我想通了。

Mule 3.1.2中的 BUG

它就像“当要搜索外部库时,Mule会在projects / lib文件夹中查找它。但这对于所有与数据库相关的库(如postgresql库)并不适用”。所以我们需要将它放在 mule / user / lib 文件夹中,以使其正常工作。