目前我正在连接不需要CA证书的数据库,如下所示:
input = new FileInputStream("path/to/properties/file");
prop.load(input);
Class.forName(prop.getProperty("JDBC_DRIVER"));
conn = DriverManager.getConnection(prop.getProperty("DB_URL"), prop.getProperty("USER"), prop.getProperty("PASS"));
现在需求已经改变,我必须使用我拥有的CA证书连接到数据库。 现在我正在尝试以下方法:
String url = prop.getProperty("DB_URL")+"?verifyServerCertificate=false"+"&useSSL=true"+"&requireSSL=true";
Class.forName(prop.getProperty("JDBC_DRIVER"));
conn = DriverManager.getConnection(url, prop.getProperty("USER"), prop.getProperty("PASS"));
您能否告诉我如何提供CA证书的路径并成功连接到数据库。
答案 0 :(得分:-1)
我能够弄清楚如何使用SSL(CA证书)连接到数据库:
input = new FileInputStream("path/to/properties/file");
prop.load(input);
Class.forName(prop.getProperty("JDBC_DRIVER"));
System.getProperties().setProperty("javax.net.ssl.trustStore",
"/path_to_certificate");
String url = prop.getProperty("DB_URL")
+ "?verifyServerCertificate=false" + "&useSSL=true"
+ "&requireSSL=true";
return DriverManager.getConnection(url, prop.getProperty("USER"),
prop.getProperty("PASS"));
这个对我有用。