How do I get a jersey client to use TLSv1.1? I’m trying to force a com.sun.jersey.client.urlconnection.HTTPSProperties (jersey client code eventually goes to this class) to use TLSv1.1 (or TLSv1) to write test code that confirms a server’s protocols. As I setup the client, I do the following: Insi…
Tag: sslcontext
Configure Spring Boot’s with custom SSLContext programmatically (for mTLS)
Problem Programmatically configure Spring Boot’s to use my custom SSLContext. And use for mTLS. Context Spring’s documentation provides only one, clear way how to configure SSL (via application.properties): However, this solution lacks depth as there are scenarios, where I’d like to advantag…