配置为接受Java 17或Apache camel中的所有服务器证书

b5buobof  于 2022-11-07  发布在  Apache
关注(0)|答案(1)|浏览(145)

我正在运行一个使用Apache camel开发的https客户端应用程序,该应用程序在Java 17上运行。Java 17或Apache camel中是否有任何配置(非代码更改)可用于接受所有服务器证书(受信任的和不受信任的)?

oknrviil

oknrviil1#

不,你必须为https请求导入de certificate,在http中是不必要的。这个证书必须在你的jdk的cacert中导入这是你需要导入它的行。

keytool -import -alias example -keystore "yourjdkdirection\cacerts" -file yourcertificate.cer

相关问题