溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

如何在SpringBoot中配置https

發(fā)布時(shí)間:2021-05-19 16:10:23 來(lái)源:億速云 閱讀:134 作者:Leah 欄目:編程語(yǔ)言

本篇文章給大家分享的是有關(guān)如何在SpringBoot中配置https,小編覺(jué)得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說(shuō),跟著小編一起來(lái)看看吧。

1、去阿里云購(gòu)買(mǎi)證書(shū)(免費(fèi)版),并提交審核資料

如何在SpringBoot中配置https

購(gòu)買(mǎi)的證書(shū)

2、下載證書(shū)

如何在SpringBoot中配置https

下載證書(shū)

3、查看上圖頁(yè)面的第三步

如何在SpringBoot中配置https

JKS證書(shū)安裝

4、在證書(shū)目錄下執(zhí)行阿里云提供的命令,密碼都填 pfx-password.txt 中的內(nèi)容(三次),會(huì)生成 your-name.jks 文件。

如何在SpringBoot中配置https

生成 jks 證書(shū)

此處我已改名為 any.jks

5、將 any.jks 復(fù)制到 spring boot 應(yīng)用的 resources 目錄下

如何在SpringBoot中配置https

移動(dòng)證書(shū)

6、在 application.yml 中配置證書(shū)及端口,密碼填寫(xiě)第四步中的密碼

如何在SpringBoot中配置https

此配置會(huì)使 Undertow 容器監(jiān)聽(tīng) 443 端口,那么只有在域名前添加 https:// 才能訪問(wèn)網(wǎng)站內(nèi)容,添加 http:// 則不行,所以需要讓 Undertow 容器監(jiān)聽(tīng) 80 端口,并將 80 端口的所有請(qǐng)求重定向到 443 端口,即完成 http 到 https 的跳轉(zhuǎn)。

7、添加 SslConfig.java ,配置 Undertow 監(jiān)聽(tīng) 80 端口。

@Configuration
public class SslConfig {

  @Bean
  public EmbeddedServletContainerFactory servletContainer() {

    UndertowEmbeddedServletContainerFactory undertowFactory = new UndertowEmbeddedServletContainerFactory();
    undertowFactory.addBuilderCustomizers(new UndertowBuilderCustomizer() {

      @Override
      public void customize(Undertow.Builder builder) {
        builder.addHttpListener(80, "0.0.0.0");
      }

    });
    return undertowFactory;
  }

}

8、在 Spring Security 中配置 80 端口到 443 端口的映射 【待完善】

springboot是什么

springboot一種全新的編程規(guī)范,其設(shè)計(jì)目的是用來(lái)簡(jiǎn)化新Spring應(yīng)用的初始搭建以及開(kāi)發(fā)過(guò)程,SpringBoot也是一個(gè)服務(wù)于框架的框架,服務(wù)范圍是簡(jiǎn)化配置文件。

以上就是如何在SpringBoot中配置https,小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見(jiàn)到或用到的。希望你能通過(guò)這篇文章學(xué)到更多知識(shí)。更多詳情敬請(qǐng)關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI