|
@@ -1,17 +1,10 @@
|
|
|
package com.jiayue.ssi;
|
|
|
|
|
|
import com.ulisesbocchio.jasyptspringboot.annotation.EnableEncryptableProperties;
|
|
|
-//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.mybatis.spring.annotation.MapperScan;
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
-//import org.springframework.boot.web.embedded.tomcat.TomcatConnectorCustomizer;
|
|
|
-//import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
|
|
|
-//import org.springframework.boot.web.servlet.server.ConfigurableServletWebServerFactory;
|
|
|
-//import org.springframework.context.annotation.Bean;
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* TODO
|
|
@@ -26,45 +19,4 @@ public class SsiApplication {
|
|
|
public static void main(String[] args) {
|
|
|
SpringApplication.run(SsiApplication.class, args);
|
|
|
}
|
|
|
-
|
|
|
-// @Bean
|
|
|
-// public ConfigurableServletWebServerFactory webServerFactory() {
|
|
|
-// TomcatServletWebServerFactory factory = new TomcatServletWebServerFactory();
|
|
|
-// factory.addConnectorCustomizers(new TomcatConnectorCustomizer() {
|
|
|
-// @Override
|
|
|
-// public void customize(Connector connector) {
|
|
|
-// connector.setProperty("relaxedQueryChars", "|{}[]");//允许的特殊字符
|
|
|
-// }
|
|
|
-// });
|
|
|
-// return factory;
|
|
|
-// }
|
|
|
-
|
|
|
-// @Bean
|
|
|
-// public TomcatServletWebServerFactory servletContainer() {
|
|
|
-// TomcatServletWebServerFactory tomcat = new TomcatServletWebServerFactory() {
|
|
|
-// @Override
|
|
|
-// protected void postProcessContext(Context context) {
|
|
|
-// SecurityConstraint constraint = new SecurityConstraint();
|
|
|
-// constraint.setUserConstraint("CONFIDENTIAL");
|
|
|
-// SecurityCollection collection = new SecurityCollection();
|
|
|
-// collection.addPattern("/*");
|
|
|
-// constraint.addCollection(collection);
|
|
|
-// context.addConstraint(constraint);
|
|
|
-// }
|
|
|
-// };
|
|
|
-// tomcat.addAdditionalTomcatConnectors(httpConnector());
|
|
|
-// return tomcat;
|
|
|
-// }
|
|
|
-//
|
|
|
-// @Bean
|
|
|
-// public Connector httpConnector() {
|
|
|
-// Connector connector = new Connector("org.apache.coyote.http11.Http11NioProtocol");
|
|
|
-// connector.setScheme("http");
|
|
|
-// //Connector监听的http的端口号
|
|
|
-// connector.setPort(8887);
|
|
|
-// connector.setSecure(false);
|
|
|
-// //监听到http的端口号后转向到的https的端口号
|
|
|
-// connector.setRedirectPort(8888);
|
|
|
-// return connector;
|
|
|
-// }
|
|
|
}
|