|
@@ -1,14 +1,35 @@
|
|
|
package com.macro.mall.portal;
|
|
|
|
|
|
+import org.apache.catalina.connector.Connector;
|
|
|
import org.mybatis.spring.annotation.MapperScan;
|
|
|
+import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
+import org.springframework.boot.context.embedded.EmbeddedServletContainerFactory;
|
|
|
+import org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainerFactory;
|
|
|
+import org.springframework.context.annotation.Bean;
|
|
|
|
|
|
@SpringBootApplication
|
|
|
@MapperScan({"com.macro.mall.mapper","com.macro.mall.portal.dao"})
|
|
|
public class MallPortalApplication {
|
|
|
+ @Value("${http.port}")
|
|
|
+ private Integer port;
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
SpringApplication.run(MallPortalApplication.class, args);
|
|
|
}
|
|
|
+
|
|
|
+ @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;
|
|
|
+ }
|
|
|
}
|