使用带有 ssl 的 spring-ldap

2024-05-10Java开发问题
4

本文介绍了使用带有 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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

如何使用 JAVA 向 COM PORT 发送数据?
How to send data to COM PORT using JAVA?(如何使用 JAVA 向 COM PORT 发送数据?)...
2024-08-25 Java开发问题
21

如何使报表页面方向更改为“rtl"?
How to make a report page direction to change to quot;rtlquot;?(如何使报表页面方向更改为“rtl?)...
2024-08-25 Java开发问题
19

在 Eclipse 项目中使用西里尔文 .properties 文件
Use cyrillic .properties file in eclipse project(在 Eclipse 项目中使用西里尔文 .properties 文件)...
2024-08-25 Java开发问题
18

有没有办法在 Java 中检测 RTL 语言?
Is there any way to detect an RTL language in Java?(有没有办法在 Java 中检测 RTL 语言?)...
2024-08-25 Java开发问题
11

如何在 Java 中从 DB 加载资源包消息?
How to load resource bundle messages from DB in Java?(如何在 Java 中从 DB 加载资源包消息?)...
2024-08-25 Java开发问题
13

如何更改 Java 中的默认语言环境设置以使其保持一致?
How do I change the default locale settings in Java to make them consistent?(如何更改 Java 中的默认语言环境设置以使其保持一致?)...
2024-08-25 Java开发问题
13