您好,登錄后才能下訂單哦!
本篇文章為大家展示了Oracle JDBC連接BUG如何解決,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
package com; import java.sql.Connection; import java.util.Properties; import oracle.jdbc.driver.OracleDriver; /** * 數據庫連接對象管理類 * @說明 * @author cuisuqiang * @version 1.0 * @since */ public class ConnectionManager { private static final String url = "jdbc:oracle:thin:@192.168.1.155:1521:orcl"; private static final String username = "scott"; private static final String userpass = "bi123"; public static void main(String[] args) throws Exception { Connection conn = getConnection("1"); if (null != conn) { System.out.println(conn.toString()); } else { System.out.println("NO LINK"); } } public static Connection getConnection(String tar) { Connection conn = null; try { OracleDriver driver = new OracleDriver(); Properties properties = new Properties(); properties.put("user", username); properties.put("password", userpass); conn = driver.connect(url, properties); } catch (Exception e) { e.printStackTrace(); } return conn; } }
看服務窗口:
可以看到,程序發來了登錄信息,但是我們不回復,然后就會看到,程序死在了:
conn = driver.connect(url, properties);
獲得連接這里!
上述內容就是Oracle JDBC連接BUG如何解決,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。