Tag Archives: jetty

SSL双向验证证书生成

http://blog.csdn.net/skygpan/article/details/50720658 Generate server keys生成服务器证书 keytool -genkey -alias serverkey -keyalg RSA -keystore kserver.keystore keytool -export -alias serverkey -keystore kserver.keystore -rfc -file... Read More | Share it now!

Jetty SSL Configuration Example

From: https://examples.javacodegeeks.com/enterprise-java/jetty/jetty-ssl-configuration-example/ In this example, we are going to configure SSL on Jetty Server. We are first generate SSL key and certificates using OpenSSL. Then we will configure our... Read More | Share it now!

Adding SSL Support to an Embedded Jetty Server

From: https://dzone.com/articles/adding-ssl-support-embedded As I discussed in a series of four posts (see Part 1, Part 2, Part 3, and Part 4), I recently taught a class on Spring WebMVC and how it can be used to REST-enable a standalone Java... Read More | Share it now!