使用網上流傳的一個資料庫連接池在Proxy.newProxyInstance處引起 java.lang.ClassCastException 問題的解決方案

來源:互聯網
上載者:User
getFreeConnection方法的代碼如下:
    public Connection getFreeConnection() {
        //返回資料庫連接conn的接管類,以便截住close方法
        Connection conn2 = null;
        if (conn instanceof Connection) {
            conn2 = (Connection) Proxy.newProxyInstance(conn.getClass().getClassLoader(), conn.getClass().getInterfaces(), this);
        }
        return conn2;
    }
用MySQLv5版本的資料庫驅動沒有問題,使用MySQLv6和Oracle的資料庫驅動時候報如下錯誤:java.lang.ClassCastException: $Proxy0 cannot be cast to java.sql.Connection
        at dbpoolImpl._Connection.getFreeConnection(_Connection.java:126)
        at dbpoolImpl.ConnectionFactory.getFreeConnection(ConnectionFactory.java:113)
        at dbpoolImpl.DataBase_Task.checkDataBase(DataBase_Task.java:83)
        at dbpoolImpl.DataBase_Task.ProcessHandle(DataBase_Task.java:227)

在網上搜尋很久,終於找到解決方案,將建立代理類的語句改一下“conn2 = (Connection) Proxy.newProxyInstance(conn.getClass().getClassLoader(), new Class[]{Connection.class}, this);

原因就在於conn.getClass().getInterfaces()方法出來的是Class類數組,此數組的第一個元素必須是Connection才能把建立的代理類轉為Connection對象,大家可以使用下面的語句        Class[] interfaces = conn.getClass().getInterfaces();        for (Class c : interfaces) {            System.out.println(c.getCanonicalName());        }列印一下使用不同資料庫驅動時conn.getClass().getInterfaces()裡面都有啥元素

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.