亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

后端服務器如何映射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
衡阳市| 城步| 淮北市| 潮州市| 宜君县| 连州市| 甘肃省| 鹤山市| 扶风县| 双桥区| 淄博市| 崇信县| 隆回县| 本溪市| 百色市| 翼城县| 荆门市| 霍州市| 吴川市| 年辖:市辖区| 长汀县| 巧家县| 报价| 木兰县| 泰安市| 平昌县| 祥云县| 区。| 尼木县| 临桂县| 化州市| 徐闻县| 雷州市| 周口市| 景德镇市| 凤台县| 太仓市| 周至县| 通许县| 和平区| 安阳市|