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

溫馨提示×

溫馨提示×

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

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

Springboot如何實現單體架構http請求轉換https請求來支持微信小程序調用接口

發布時間:2021-07-05 10:13:03 來源:億速云 閱讀:253 作者:小新 欄目:編程語言

小編給大家分享一下Springboot如何實現單體架構http請求轉換https請求來支持微信小程序調用接口,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

http請求轉換https請求

1、實例如下

application.properties配置文件

Springboot如何實現單體架構http請求轉換https請求來支持微信小程序調用接口

#(密鑰文件路徑,也可以配置絕對路徑)
server.ssl.key-store= classpath:證書文件名.pfx
#(密鑰生成時輸入的密鑰庫口令)
server.ssl.key-store-password:123456
#(密鑰類型,與密鑰生成命令一致)
server.ssl.key-store-type:PKCS12

證書一般最好放在resources目錄下

接下來配置啟動類RUN.java的代碼

import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.transaction.annotation.EnableTransactionManagement;
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.EmbeddedServletContainerFactory;
import org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainerFactory;

@SpringBootApplication
@EnableTransactionManagement
@EnableScheduling
public class Run{
  public static void main(String[] args) throws Exception {
    SpringApplication.run(Run.class, args);
  }
  

  /**
   * it's for set http url auto change to https
   */
  @Bean
  public EmbeddedServletContainerFactory servletContainer(){
    TomcatEmbeddedServletContainerFactory tomcat=new TomcatEmbeddedServletContainerFactory(){
      @Override
      protected void postProcessContext(Context context) {
        SecurityConstraint securityConstraint=new SecurityConstraint();
        securityConstraint.setUserConstraint("CONFIDENTIAL");//confidential
        SecurityCollection collection=new SecurityCollection();
        collection.addPattern("/*");
        securityConstraint.addCollection(collection);
        context.addConstraint(securityConstraint);
      }
    };
    tomcat.addAdditionalTomcatConnectors(initiateHttpConnector());
    return tomcat;
  }
  
  /**
   * 讓我們的應用支持HTTP是個好想法,但是需要重定向到HTTPS,
   * 但是不能同時在application.properties中同時配置兩個connector,
   * 所以要以編程的方式配置HTTP connector,然后重定向到HTTPS connector
   * @return Connector
   */
  private Connector initiateHttpConnector() {
    Connector connector = new Connector("org.apache.coyote.http11.Http11NioProtocol");
    connector.setScheme("http");
    connector.setPort(8084); // http端口(請求訪問時的端口)
    connector.setSecure(false);
    connector.setRedirectPort(8444); // application.properties中配置的https端口
    return connector;
  }
}

以上代碼直接拿走,接下來啟動測試

可以訪問 http端口,也可訪問 https 端口

Springboot如何實現單體架構http請求轉換https請求來支持微信小程序調用接口

最后附上一個小編犯的錯

把代碼打包到服務器了卻總是不能訪問,后來才發現是忘記配置服務器端口號的白名單,只需放通那個端口號就行了。

以上是“Springboot如何實現單體架構http請求轉換https請求來支持微信小程序調用接口”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

南平市| 新巴尔虎右旗| 云和县| 拉萨市| 隆德县| 天镇县| 五常市| 天祝| 资中县| 亳州市| 辽阳市| 商都县| 永德县| 铜山县| 沾益县| 凤阳县| 凯里市| 大庆市| 茂名市| 马边| 本溪市| 高唐县| 南丹县| 乌什县| 汉沽区| 广西| 双城市| 新巴尔虎右旗| 怀集县| 北流市| 双峰县| 福州市| 西乌珠穆沁旗| 南康市| 恩平市| 临清市| 庄河市| 喀喇| 南澳县| 芜湖市| 和顺县|