12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- package com.rf.psychological.security;
- 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.beans.factory.annotation.Value;
- import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
- import org.springframework.context.annotation.Bean;
- import org.springframework.context.annotation.Configuration;
- import org.springframework.context.annotation.Profile;
- /**
- * @author zzf
- * @description:
- * @date 2021/9/15 14:32
- */
- //@Configuration
- @Profile({"public"})
- public class SSLConfig {
- @Value("${spring.profiles.active}")
- private String profile;
- @Bean
- public TomcatServletWebServerFactory servletContainer() { //springboot2 新变化
- TomcatServletWebServerFactory tomcat = new TomcatServletWebServerFactory() {
- @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(initiateHttpConnector());
- return tomcat;
- }
- private Connector initiateHttpConnector() {
- Connector connector = new Connector("org.apache.coyote.http11.Http11NioProtocol");
- connector.setScheme("http");
- connector.setSecure(false);
- if ("prod".equals(profile)) {
- //112机构版正式
- connector.setPort(8082);
- connector.setRedirectPort(8848);
- } else if ("public".equals(profile)) {
- //101心理照相机公网版正式
- connector.setPort(8084);
- connector.setRedirectPort(8445);
- } else {
- //TODO 待定
- //112心理照相机
- connector.setPort(9528);
- connector.setRedirectPort(8849);
- }
- return connector;
- }
- }
|