using spring-ldap with ssl(使用带有 ssl 的 spring-ldap)
问题描述
我需要通过带有 SSL 的 spring-ldap 与 LDAP 服务器通信,而另一端也有一个自签名证书.
I need to talk to an LDAP server via spring-ldap with SSL, and the other end has a self-signed certificate no less.
哪位好心人可以指点我一些设置说明吗?
Can any kind soul please point me to some instructions for setting this up?
推荐答案
查看Spring LDAP 用于通过 HTTP(S) 连接到 LDAP 服务器的文档:
Check out Spring LDAP documentation for connecting to LDAP server over HTTP(S):
就自签名证书而言,您可以将证书链导入信任库并设置以下 VM 参数:
As far as self signed certificate is concerned, you can import certificate chain into a truststore and set the following VM arguments:
-Djavax.net.ssl.trustStore="<path to truststore file>"
-Djavax.net.ssl.trustStorePassword="<passphrase for truststore>"
或在运行时覆盖信任库,例如:
or override the truststore at runtime like:
System.setProperty("javax.net.ssl.trustStore","<path to truststore file>");
System.setProperty("javax.net.ssl.trustStorePassword","<passphrase for truststore>");
请记住,这两个选项都会覆盖默认的 JVM 信任库.因此,如果您使用不同的证书访问不同的站点,您可能希望将它们全部导入一个信任库.
Keep in mind that both options will override default JVM truststore. So if you are hitting different sites with different certs, you may want to import all of them into one truststore.
如果您在创建信任库文件时需要帮助,请参阅:数字证书:如何将 .cer 文件导入到 .truststore 文件中?
In case you need help creating truststore file, refer to this: Digital Certificate: How to import .cer file in to .truststore file using?
这篇关于使用带有 ssl 的 spring-ldap的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用带有 ssl 的 spring-ldap
基础教程推荐
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 降序排序:Java Map 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01