How to convert your Spring Boot app to serve over HTTPs instead of HTTP?
Vijay SRJ
Posted on April 23, 2021
Converting your spring boot app to serve on HTTPS just requires few configuration to be added in application.yml:
server:
ssl:
key-store: C:\softwares\jdk-16\bin\demokeystore
key-store-password: demopass
key-alias: demokey
port: 8443
The above configuration is enough. Here is the explanation behind it:
💖 💪 🙅 🚩
Vijay SRJ
Posted on April 23, 2021
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.
Related
programming Mastering Spring Boot Reactive: Harness Project Reactor's Backpressure for High-Performance Apps
November 29, 2024
programming Supercharge Your Spring Boot: TestContainers and Chaos Engineering for Bulletproof Apps
November 28, 2024
programming Spring Boot Security Boost: Encrypt Configs with Jasypt for Ironclad Protection
November 27, 2024