Can you help - - how to store the keyStore in MAC version
@JavaInUse6 ай бұрын
Hi. Use below command for MAC keytool -importcert -file /path/to/http_ca.crt -keystore /path/to/truststore.p12 -storepass javainuse -noprompt -storetype pkcs12
@JavaInUse6 ай бұрын
Also you can created the keystore programatically so that it is independent of OS. I have shown this in following example www.javainuse.com/boot3/azure/2 KeyStore trustStore = KeyStore.getInstance("PKCS12");