1. 程式人生 > >spring boot https配置

spring boot https配置

前提

如果你使用Spring Boot,並且想在內嵌tomcat中新增HTTPS,需要如下步驟:

  • 要有一個證書,買的或者自己生成的
  • 在Spring Boot中啟動HTTPS

獲取SSL證書

有兩種方式:

  • 自己通過keytool生成
  • 通過證書授權機構購買

keytool生成https證書

點選檢視keytool生成過程

配置spring boot配置檔案

在application.yaml中加入https相關配置及可

server:
#  context-path: /boot
 port: plantuml-preview443
 ssl:
  key
-store: classpath:https.keystore key-store-password: machttps key-store-type: PKCS12 key-store-alias: bao

http://blog.csdn.net/bao19901210/article/details/79629112