Posted under Java & Spring & Spring Boot & Web
Permalink
I needed to use ssl for a Spring Boot backend web service for Yoti, as https is a Yoti requirement.
This post here details how to do this for Spring Boot. The official Oracle docs can also be found here.
The following configuration fragment from the Spring Boot application.properties shows how to configure for ssl using the created keystore (keystore.p12), which was placed in the deployment directory alongside the spring boot jar:-
server.port=8443
server.ssl.key-store-type=PKCS12
server.ssl.key-store=salientsoft.p12
server.ssl.key-store-password=<password>
server.ssl.key-alias=salientsoftdev
Comments Off on Using self signed SSL with Spring Boot