未找到合适的驱动程序 Postgres JDBC

问题描述 投票:0回答:1

当我在 tomcat 上测试 Web 服务时,收到“找不到合适的驱动程序”错误。我在 lib 文件夹中有 JDBC .jar,正如各种教程所说的那样。这是我的代码:

public class PostDBConnection {

 PreparedStatement st;
 ResultSet rs;
 Connection con;
 DataSource ds;
 InitialContext cxt;

 String url = "jdbc:postgresql://127.0.0.1:5432/UptonDB";
 String user = "*****";
 String password = "*******";
 String query = "";
 StringBuilder response = new StringBuilder();

@SuppressWarnings("unused")
public String getInfo(){

    int size = 0;  


    try {

        cxt = new InitialContext();     
        ds = (DataSource) cxt.lookup("java:comp/env/jdbc/UptonDB");

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

    try{

        try {

            Class.forName("org.postgres.Driver");


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

        con = DriverManager.getConnection(url, user, password);
        st =  con.prepareStatement("SELECT VERSION()");         
        rs = st.executeQuery();


        while(rs.next())
            {
                    response.append(rs.getString(1));

            }               
        }     

    catch(SQLException exc)
        {
            Logger lgr = Logger.getLogger(PostDBConnection.class.getName());
            lgr.log(Level.SEVERE, exc.getMessage(), exc);
        } 
    finally {
        try {
           if (rs != null) {
                rs.close();
            }
            if (st != null) {
                st.close();
            }
            if (con != null) {
                con.close();
            }

        } catch (SQLException ex) {
            Logger lgr = Logger.getLogger(PostDBConnection.class.getName());
            lgr.log(Level.WARNING, ex.getMessage(), ex);
        }
    }

    return response.toString();
}

这里还有我按照 Tomcat 网站上的说明创建的 web.xml 和 context.xml 文件:

 <resource-ref>
<description>PostgreSQL Data Source </description>
<res-ref-name>jdbc/UptonDB</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>

web.xml:

   <?xml version="1.0" encoding="UTF-8"?> 
   <Context>  
   <Resource name="jdbc/UptonDB" auth="Container" type="javax.sql.DataSource" 
    removeAbandoned="true" removeAbandonedTimeout="30" maxActive="80"   
    maxIdle="30" maxWait="10000" username="*****" password="*******"
    driverClassName="org.postgresql.Driver"
    url = "jdbc:postgresql://127.0.0.1:5432/UptonDB" useUnicode="true"
    characterEncoding="utf-8" characterSetResults="utf8"/>
   </Context>

任何帮助表示感谢,谢谢!

java sql postgresql tomcat jdbc
1个回答
8
投票

正确的驱动程序名称是 org.postgresql.Driver 而不是 org.postgres.Driver

更新:

检查此页面并进行一些研究,您应该没问题 :) http://tomcat.apache.org/tomcat-6.0-doc/jndi-datasource-examples-howto.html

然后,您应该只进行查找(您已经这样做了),而不是使用 DriverManager,然后从数据源获取连接(您可以从代码中删除 pwd、用户和其他未使用的内容):

Context initContext = new InitialContext();
Context envContext  = (Context)initContext.lookup("java:/comp/env");
DataSource ds = (DataSource)envContext.lookup("jdbc/UptonDB");
Connection conn = ds.getConnection();
© www.soinside.com 2019 - 2024. All rights reserved.