|
@@ -0,0 +1,32 @@
|
|
|
+package com.macro.mall.portal.config;
|
|
|
+
|
|
|
+import org.apache.catalina.connector.Connector;
|
|
|
+import org.springframework.beans.factory.annotation.Value;
|
|
|
+import org.springframework.boot.context.embedded.EmbeddedServletContainerFactory;
|
|
|
+import org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainerFactory;
|
|
|
+import org.springframework.context.annotation.Bean;
|
|
|
+import org.springframework.context.annotation.Configuration;
|
|
|
+
|
|
|
+/**
|
|
|
+ * tomcat相关配置
|
|
|
+ * Created by macro on 2018/8/7.
|
|
|
+ */
|
|
|
+@Configuration
|
|
|
+public class TomcatConfig {
|
|
|
+ @Value("${http.port}")
|
|
|
+ private Integer port;
|
|
|
+
|
|
|
+ @Bean
|
|
|
+ public EmbeddedServletContainerFactory servletContainer() {
|
|
|
+ TomcatEmbeddedServletContainerFactory tomcat = new TomcatEmbeddedServletContainerFactory();
|
|
|
+ tomcat.addAdditionalTomcatConnectors(createStandardConnector()); // 添加http
|
|
|
+ return tomcat;
|
|
|
+ }
|
|
|
+
|
|
|
+ //配置http
|
|
|
+ private Connector createStandardConnector() {
|
|
|
+ Connector connector = new Connector("org.apache.coyote.http11.Http11NioProtocol");
|
|
|
+ connector.setPort(port);
|
|
|
+ return connector;
|
|
|
+ }
|
|
|
+}
|