亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

數據庫連接報錯Communications link failure

數據庫連接報錯Communications link failure

二道橋十三太保 2017-03-16 17:55:49
package?util; import?java.sql.Connection; import?java.sql.DriverManager; public?class?DBHelper?{ private?static?final?String?driver="com.mysql.jdbc.Driver"; private?static?final?String?url="jdbc:mysql://localhost:3006/imooc"; private?static?final?String?username="root"; private?static?final?String?password="123456"; private?static?Connection?conn=null; //靜態代碼塊負責加載驅動 static{ try{ Class.forName(driver); }catch(Exception?ex){ ex.printStackTrace(); } } //單例模式返回數據庫連接對象 public?static?Connection?getConnection()?throws?Exception{ if(conn==null){ conn=DriverManager.getConnection(url,?username,?password); return?conn; } return?conn; } //判斷連接是否成功 public?static?void?main(String[]?args)?{ try?{ Connection?conn=DBHelper.getConnection(); if(conn!=null){ System.out.println("數據庫連接正常"); }else{ System.out.println("數據庫連接異常"); } }?catch?(Exception?e)?{ //?TODO?Auto-generated?catch?block e.printStackTrace(); } } }代碼如上?請問要怎么處理?
查看完整描述

1 回答

已采納
?
夢影劍魂

TA貢獻66條經驗 獲得超21個贊

?private?static?final?String?url="jdbc:mysql://localhost:3006/imooc";你把端口號改成3006了??如果沒有,默認的應該是3306

查看完整回答
反對 回復 2017-03-18
  • 1 回答
  • 0 關注
  • 3340 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號