如何设置Spring Boot以运行HTTPS / HTTP端口
2022-08-31 17:28:08
Spring boot具有一些属性来配置Web端口和SSL设置,但是一旦设置了SSL证书,http端口就会变成https端口。
那么,我如何保持两个端口在其上运行,例如:80和443同时运行?
如您所见,只有一个端口的属性,在本例中为“server.ssl”被启用,这使得http端口自动禁用。
##############
### Server ###
##############
server.port=9043
server.session-timeout=1800
server.ssl.key-store=file:///C:/Temp/config/localhost.jks
server.ssl.key-store-password=localhost
server.ssl.key-password=localhost
server.ssl.trust-store=file:///C:/Temp/config/localhost.jks
server.ssl.trust-store-password=localhost
我甚至试图使用Tomcat或Undertow。我将不胜感激任何帮助!