中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ssl如何實現在spring boot中配置

發布時間:2020-11-18 16:35:11 來源:億速云 閱讀:215 作者:Leah 欄目:編程語言

ssl如何實現在spring boot中配置 ?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

ssl協議位于tcp/ip協議與各種應用協議之間,為數據通信提供安全支持。

ssl協議分為兩層:

  1. ssl記錄協議,它建立在可靠傳輸協議之上,為高層協議提供數據封裝、壓縮、加密等基本功能支持。
  2. ssl握手協議,它建立在ssl記錄協議之上,用于實際數據傳輸開始前,通信雙方進行身份認證、協商加密算法、交換加密密鑰等

基于B/S的web應用,是通過https來實現ssl的。https是http的安全版,即在http下加入ssl層,https的安全基礎是ssl;

我們開始在spring boot中使用ssl設置;

1.生成證書

每一個jdk或者jre中都有一個工具叫keytool,它是一個證書管理工具,可以用來生成自簽名的證書;打開cmd,進入jdk/bin路徑,敲入命令

keytool -genkey -alias tomcat
  

ssl如何實現在spring boot中配置  

在用戶路徑下生成 .keystore文件 ,這就是我們要使用的證書文件。

ssl如何實現在spring boot中配置

2.spring boot配置ssl

將.keystore文件復制到項目根目錄,然后配置application.properties中做ssl配置

server.ssl.key-store=.keystore

server.ssl.key-store-password=密碼

server.ssl.keyStoreType = JKS

server.ssl.keyAlias=tomcat 

啟動項目

ssl如何實現在spring boot中配置  

訪問地址 https://localhost:8080

ssl如何實現在spring boot中配置

  ssl如何實現在spring boot中配置  

3、http轉https

要實現這個功能,我們需要配置TomcatEmbeddedServletContainerFactory,并且添加tomcat的connector來實現。

package com.example;

import org.apache.catalina.Context;

import org.apache.catalina.connector.Connector;

import org.apache.tomcat.util.descriptor.web.SecurityCollection;

import org.apache.tomcat.util.descriptor.web.SecurityConstraint;

import org.springframework.boot.SpringApplication;

import org.springframework.boot.autoconfigure.SpringBootApplication;

import org.springframework.boot.context.embedded.ConfigurableEmbeddedServletContainer;

import org.springframework.boot.context.embedded.EmbeddedServletContainerCustomizer;

import org.springframework.boot.context.embedded.EmbeddedServletContainerFactory;

import org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainerFactory;

import org.springframework.boot.web.servlet.ErrorPage;

import org.springframework.context.annotation.Bean;

import org.springframework.http.HttpStatus;

import org.springframework.stereotype.Component;

import org.springframework.stereotype.Controller;

import org.springframework.ui.Model;

import org.springframework.web.bind.annotation.RequestMapping;

import org.springframework.web.bind.annotation.RestController;

import org.springframework.web.servlet.config.annotation.EnableWebMvc;

 

import java.util.ArrayList;

import java.util.List;

import java.util.concurrent.TimeUnit;

 

/**

 * Created by xingzhuipingye on 2017/5/7.

 */

@Controller

@SpringBootApplication

 

public class ApplicationMy {

  @RequestMapping("/")

  public String index(Model model){

    Person single = new Person("aa",11);

    List<Person> list = new ArrayList<>();

    Person p1 = new Person("xx",11);

    Person p2 = new Person("yy",22);

    Person p3 = new Person("zz",33);

    list.add(p1);

    list.add(p2);

    list.add(p3);

    model.addAttribute("singlePerson",single);

    model.addAttribute("people",list);

    return "index";

  }

  public static void main(String[] args){

    SpringApplication.run(ApplicationMy.class);

  }

 

  @Bean

  public EmbeddedServletContainerFactory servletContainer(){

    TomcatEmbeddedServletContainerFactory tomcat = new TomcatEmbeddedServletContainerFactory(){

      @Override

      protected void postProcessContext(Context context) {

        SecurityConstraint securityConstraint = new SecurityConstraint();

        securityConstraint.setUserConstraint("CONFIDENTIAL");

        SecurityCollection collection = new SecurityCollection();

        collection.addPattern("/*");

        securityConstraint.addCollection(collection);

        context.addConstraint(securityConstraint);

      }

    };

    tomcat.addAdditionalTomcatConnectors(httpConnector());

    return tomcat;

  }

 

  @Bean

  public Connector httpConnector(){

    Connector connector = new Connector("org.apache.coyote.http11.Http11NioProtocol");

    connector.setScheme("http");

    connector.setPort(8080);

    connector.setSecure(false);

    connector.setRedirectPort(8088);

    return connector;

  }

 

} 

注:我在application.properties 中修改了端口為8088

此時我們訪問http://localhost:8080 就會跳轉到 https://localhost:8088  

關于ssl如何實現在spring boot中配置 問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

海安县| 塘沽区| 巴马| 安远县| 炉霍县| 巫溪县| 广河县| 贵定县| 汤原县| 长岭县| 海盐县| 库伦旗| 科技| 龙山县| 绥芬河市| 梁河县| 德清县| 中牟县| 育儿| 翼城县| 江西省| 蓬安县| 安多县| 睢宁县| 桐庐县| 万年县| 万载县| 延吉市| 依兰县| 甘孜| 建水县| 广汉市| 武义县| 体育| 双峰县| 湘潭县| 涞源县| 西乌| 登封市| 安国市| 衡东县|