找不到适合jdbc postgresql的驱动程序

时间:2018-12-08 15:53:06

标签: postgresql tomcat jdbc

我在Servlet和数据库之间存在连接问题。 我这样使用jdbc postgres:

private Connection c;
public ConnectionFactory() {

    System.out.println("Connettendo...");
    try {

         c = DriverManager.getConnection("jdbc:postgresql://localhost:5432/VirtualWallet","postgres","forzamilan98");
         System.out.println("Connect to database");

    } catch (SQLException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

我使用Maven,所以我在pom.xml中包含了依赖项。 当我在本地运行此代码时,他运行得很好,但是当我在tomcat上使用此代码时,出现此错误:

No suitable driver found for jdbc:postgresql://localhost:5432/VirtualWallet
at java.sql.DriverManager.getConnection(DriverManager.java:689)
at java.sql.DriverManager.getConnection(DriverManager.java:247)[...]

我正在使用此代码连接数据库上的html符号表单。 请帮我,对不起我的英语不好。

0 个答案:

没有答案