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:
Top comments (0)