91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

华蓥市| 荥阳市| 邵阳市| 保定市| 左云县| 西吉县| 从化市| 承德县| 武冈市| 石家庄市| 澄城县| 郸城县| 朝阳县| 凭祥市| 岳普湖县| 郑州市| 文昌市| 阿坝县| 金坛市| 溆浦县| 清远市| 绵竹市| 临邑县| 宜州市| 莱西市| 临汾市| 吉木萨尔县| 承德县| 迁西县| 怀安县| 盐边县| 沭阳县| 庐江县| 社会| 惠东县| 武陟县| 海原县| 南安市| 景谷| 来凤县| 勐海县|