JiveJdon3.0 為何連不上MySQL 資料庫?
我看了幾天這個版本的有關資料庫連線的原始碼,但是仍未能解決空指標的問題,真無奈v=v !
希望各位指點:
經測試:jive 中的連線資料庫程式碼都是OK 的,但就是連線不上資料庫。
下面是我的測試程式碼:
package myCom.test;
import java.io.*;
import myCom.util.XMLParse;
import java.sql.*;
import java.util.*;
public class xmlTest
{
public static void main(String[] args)
{
Connection[] connPool = null;
Statement stmt = null;
ResultSet rst = null;
try
{
XMLParse parse = new XMLParse("E:\\javaSample\\DataAccess\\XMLFileParse\\jive.xml");
//parse.updateElement("root.one.a.b","one text");
String url = parse.getElementText("jive.database.defaultProvider.serverURL");
String driver = parse.getElementText("jive.database.defaultProvider.driver");
String userName = parse.getElementText("jive.database.defaultProvider.username");
String password = parse.getElementText("jive.database.defaultProvider.password");
//String minConn = parse.getElementText("jive.database.defaultProvider.minConnections");
//String maxConn = parse.getElementText("jive.database.defaultProvider.maxConnections");
System.out.println ("driver:"+driver+"\n url"+url+"\n userName:"+userName+"\n password :"+password);
java.util.Date now = new java.util.Date();
int loop = 5;
connPool = new Connection[5];
for (int i = 0; i<loop; i++)
{
try
{
Class.forName(driver).newInstance();
// Connection cc = DriverManager.getConnection(url,userName,password);
connPool = DriverManager.getConnection(url,userName,password);
// System.out.println(now.toString() + " Opening connection " + String.valueOf(i) +
// " " + cc.toString() + ":");
System.out.println(now.toString() + " Opening connection " + String.valueOf(i) +
" " + connPool.toString() + ":");
}
catch (ClassNotFoundException cnfe)
{
System.out.println ("Exception for createConn()::");
cnfe.printStackTrace();
throw new SQLException(cnfe.getMessage());
}
}
//one
String sq="select * from jiveid";
stmt = connPool[1].createStatement();
rst = stmt.executeQuery(sq);
while(rst.next())
{
System.out.println ("idType::"+rst.getInt("idType"));
System.out.println ("id::"+rst.getInt("id"));
}
System.out.println ("=====**************==========\n\n");
//two
String sql = "select * from jiveuser";
stmt = connPool[2].createStatement();
rst = stmt.executeQuery(sql);
while(rst.next())
{
System.out.println ("name::"+rst.getString("name"));
System.out.println ("userName::"+rst.getString("username"));
}
System.out.println ("=====**************==========\n\n");
for (int i = 0; i<loop; i++)
{
try
{
if(!connPool.isClosed())
{
System.out.println ("close the connetion:"+connPool.toString());
connPool.close();
}
}
catch (Exception ex)
{
}
}
}
catch (Exception ex) {
ex.printStackTrace();
}
}
}
輸出完全沒問題的,這也是JiveJdon3.0 使用的資料庫連線方法。
執行提示空指標異常,輸出的日誌記錄如下:
Attempt (1 of 5) failed to create new connections set at startup:
java.sql.SQLException: Communication failure during handshake. Is there a server running on 127.0.0.1:3306?
。。。。。
還望各位不惜指教,謝謝!
希望各位指點:
經測試:jive 中的連線資料庫程式碼都是OK 的,但就是連線不上資料庫。
下面是我的測試程式碼:
package myCom.test;
import java.io.*;
import myCom.util.XMLParse;
import java.sql.*;
import java.util.*;
public class xmlTest
{
public static void main(String[] args)
{
Connection[] connPool = null;
Statement stmt = null;
ResultSet rst = null;
try
{
XMLParse parse = new XMLParse("E:\\javaSample\\DataAccess\\XMLFileParse\\jive.xml");
//parse.updateElement("root.one.a.b","one text");
String url = parse.getElementText("jive.database.defaultProvider.serverURL");
String driver = parse.getElementText("jive.database.defaultProvider.driver");
String userName = parse.getElementText("jive.database.defaultProvider.username");
String password = parse.getElementText("jive.database.defaultProvider.password");
//String minConn = parse.getElementText("jive.database.defaultProvider.minConnections");
//String maxConn = parse.getElementText("jive.database.defaultProvider.maxConnections");
System.out.println ("driver:"+driver+"\n url"+url+"\n userName:"+userName+"\n password :"+password);
java.util.Date now = new java.util.Date();
int loop = 5;
connPool = new Connection[5];
for (int i = 0; i<loop; i++)
{
try
{
Class.forName(driver).newInstance();
// Connection cc = DriverManager.getConnection(url,userName,password);
connPool = DriverManager.getConnection(url,userName,password);
// System.out.println(now.toString() + " Opening connection " + String.valueOf(i) +
// " " + cc.toString() + ":");
System.out.println(now.toString() + " Opening connection " + String.valueOf(i) +
" " + connPool.toString() + ":");
}
catch (ClassNotFoundException cnfe)
{
System.out.println ("Exception for createConn()::");
cnfe.printStackTrace();
throw new SQLException(cnfe.getMessage());
}
}
//one
String sq="select * from jiveid";
stmt = connPool[1].createStatement();
rst = stmt.executeQuery(sq);
while(rst.next())
{
System.out.println ("idType::"+rst.getInt("idType"));
System.out.println ("id::"+rst.getInt("id"));
}
System.out.println ("=====**************==========\n\n");
//two
String sql = "select * from jiveuser";
stmt = connPool[2].createStatement();
rst = stmt.executeQuery(sql);
while(rst.next())
{
System.out.println ("name::"+rst.getString("name"));
System.out.println ("userName::"+rst.getString("username"));
}
System.out.println ("=====**************==========\n\n");
for (int i = 0; i<loop; i++)
{
try
{
if(!connPool.isClosed())
{
System.out.println ("close the connetion:"+connPool.toString());
connPool.close();
}
}
catch (Exception ex)
{
}
}
}
catch (Exception ex) {
ex.printStackTrace();
}
}
}
輸出完全沒問題的,這也是JiveJdon3.0 使用的資料庫連線方法。
執行提示空指標異常,輸出的日誌記錄如下:
Attempt (1 of 5) failed to create new connections set at startup:
java.sql.SQLException: Communication failure during handshake. Is there a server running on 127.0.0.1:3306?
。。。。。
還望各位不惜指教,謝謝!
相關文章
- setup中為何資料庫連線不上那資料庫
- SQL server資料庫連線不上SQLServer資料庫
- 客戶端連不上資料庫客戶端資料庫
- 寶塔安裝mysql5.7資料庫怎麼連不上MySql資料庫
- 請問問什麼連不上資料庫?資料庫
- 不上資料庫資料庫
- 連不上SQL Server資料庫,不明白啊SQLServer資料庫
- mysql資料庫,讓不連續的id重新排序MySql資料庫排序
- 求救:hibernate3連結資料庫infomix連線不上資料庫
- 何為資料庫連線池?其工作原理是什麼?資料庫
- MySQL 連線不上 急MySql
- 客戶端連不上資料庫,如何來排錯客戶端資料庫
- 帝國cms連線不上資料庫怎麼辦資料庫
- 帝國cms資料庫連線不上怎麼辦資料庫
- 連線mysql資料庫MySql資料庫
- 連線資料庫-mysql資料庫MySql
- 用Navicat連線資料庫-資料庫連線(MySQL演示)資料庫MySql
- Jtti:連線不上SQL資料庫怎麼解決?JttiSQL資料庫
- laravel、lumen等.env檔案資料庫密碼配置正確,連不上資料庫Laravel資料庫密碼
- django | 連線mysql資料庫DjangoMySql資料庫
- 如何連線MySQL資料庫MySql資料庫
- jmeter連結mysql資料庫JMeterMySql資料庫
- pycharm連線MySQL資料庫PyCharmMySql資料庫
- Mysql資料庫表連線MySql資料庫
- PHP連線MySql資料庫PHPMySql資料庫
- mysql資料庫連線(MySQLdb)MySql資料庫
- Weka 連線MySQL資料庫MySql資料庫
- java連線mysql資料庫JavaMySql資料庫
- Ruby連線MySQL資料庫MySql資料庫
- Django 2連線MySQL資料庫DjangoMySql資料庫
- mysql資料庫怎麼連線MySql資料庫
- 遠端連線mysql資料庫MySql資料庫
- 【JavaWeb】JDBC連線MySQL資料庫JavaWebJDBCMySql資料庫
- 用thinkphp連線mysql資料庫PHPMySql資料庫
- Python連線MySQL資料庫PythonMySql資料庫
- 使用cmd連線mysql資料庫MySql資料庫
- 聊聊何為圖資料庫和圖資料庫的小知識資料庫
- python資料插入連線MySQL資料庫PythonMySql資料庫