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

溫馨提示×

后端服務器如何映射https

九三
233
2021-03-01 18:47:19
欄目: 云計算

后端服務器如何映射https

在后端服務器中設置映射https,具體方法如下:

public class Http2HttpsConfig {

/**

* 配置服務器容器

*/

@Bean

public EmbeddedServletContainerFactory servletContainer(){

TomcatEmbeddedServletContainerFactory tomcat = new TomcatEmbeddedServletContainerFactory(){

@Override

protected void postProcessContext(Context context) {

SecurityConstraint securityConstraint = new SecurityConstraint();

securityConstraint.setUserConstraint("CONFIDENTIAL");

SecurityCollection securityCollection = new SecurityCollection();

securityCollection.addPattern("/*");

securityConstraint.addCollection(securityCollection);

context.addConstraint(securityConstraint);

}

};

tomcat.addAdditionalTomcatConnectors(httpConnector());

return tomcat;

}

/**

* 設置http到https的url映射

*/

@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;

}

}

0
钦州市| 丹东市| 炉霍县| 神池县| 小金县| 菏泽市| 桦川县| 长兴县| 鹤庆县| 扬州市| 吐鲁番市| 贵港市| 临西县| 同心县| 南宁市| 屯昌县| 普定县| 博乐市| 饶阳县| 土默特右旗| 平凉市| 永福县| 宁远县| 都江堰市| 平利县| 葵青区| 慈溪市| 大城县| 太谷县| 视频| 富平县| 福贡县| 德州市| 磴口县| 祥云县| 乐平市| 庆城县| 奉新县| 湟中县| 方正县| 江油市|