我最近在我的计算机上安装了MS SQL Server 2017,并且遇到了这样的问题:仅打开连接会花费很长时间。
仅此行需要5.5秒:con = DriverManager.getConnection(connectionUrl)
package test;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
public class Test
{
static
{
try
{
Class.forName("com.mysql.jdbc.Driver");
}
catch (Exception e)
{
}
}
public static void main(String[] args) throws SQLException
{
Connection con = null;
try
{
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
String connectionUrl = "jdbc:sqlserver://localhost:1433;databaseName=BSSGI;user=bssuser;password=123456";
long startTime, endTime, total;
startTime = System.currentTimeMillis();
con = DriverManager.getConnection(connectionUrl);
endTime = System.currentTimeMillis();
total = endTime - startTime;
System.out.println("Con:" + total);
}
catch (Exception e)
{
e.printStackTrace();
System.exit(0);
}
finally
{
con.close ();
}
}
}
这是我得到的输出:
run:
Con:5582
BUILD SUCCESSFUL (total time: 5 seconds)
我能够通过MS SQL Management Studio正常连接到服务器,并且看不到查询速度或连接性有任何问题。 该服务器当前在功能强大的计算机和nvme SSD(三星970 pro)上运行;所以我怀疑这是机器的性能问题。 而且测试程序和服务器在同一台机器上,所以我怀疑它与网络有什么关系。
谢谢。