1

在早期的 Spring Boot 中,设置 SSL 安全性的配置必须在 application.properties 上通过提及完成

server.port=8443
security.require-ssl=true
server.ssl.key-store=classpath:shq.jks
server.ssl.key-store-password=******
server.ssl.key-password=******

在 spring boot 2.0.3 上是否可以使用同样的方法

如果不是什么必须改变。

4

1 回答 1

1

你的问题的答案是肯定的。

Spring boot 2.0.x 版本也是如此。

您可以参考下面的交叉验证。

在 Spring Boot 2.0 中使用自签名证书启用 HTTPS

于 2018-08-17T12:16:53.757 回答