gpt4 book ai didi

java - 如何在 jTDS 连接 url 中指定信任库和信任库密码?

转载 作者:太空宇宙 更新时间:2023-11-03 13:17:47 25 4
gpt4 key购买 nike

我正在编写一个 java 应用程序,它使用 jTDS 通过 ssl 连接连接到数据库。我已将属性 ssl=require 添加到连接 URL 以启用 ssl 连接。

但是我找不到如何配置可以指定要使用的信任库以及它的密码是什么的属性?此处列出了所有 jTDS 连接属性:http://jtds.sourceforge.net/faq.html

SQL 服务器 jdbc 驱动程序具有这些属性 trustStore 和 trustStorePassword,根据此链接:http://technet.microsoft.com/en-us/library/bb879949.aspx

知道如何使用具有这些属性的 jTDS 配置 ssl 连接吗?

最佳答案

您可以通过 Java 应用程序 动态指定 trustStorekeyStore 位置及其密码,如下所示:

System.setProperty("javax.net.ssl.trustStore", trustStore file path goes here);
System.setProperty("javax.net.ssl.trustStorePassword", password goes here);

System.setProperty("javax.net.ssl.keyStore", keyStore file path goes here);
System.setProperty("javax.net.ssl.keyStorePassword", password goes here);

关于java - 如何在 jTDS 连接 url 中指定信任库和信任库密码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23516517/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com