31 lines
1.0 KiB
Java
31 lines
1.0 KiB
Java
|
|
package com.dbnt.faisp.config;
|
||
|
|
|
||
|
|
import org.apache.catalina.connector.Connector;
|
||
|
|
import org.springframework.beans.factory.annotation.Value;
|
||
|
|
import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
|
||
|
|
import org.springframework.boot.web.servlet.server.ServletWebServerFactory;
|
||
|
|
import org.springframework.context.annotation.Bean;
|
||
|
|
import org.springframework.context.annotation.Configuration;
|
||
|
|
|
||
|
|
//@Configuration
|
||
|
|
public class TomcatConfiguration {
|
||
|
|
|
||
|
|
@Value("${tomcat.ajp.protocol}")
|
||
|
|
private String protocol;
|
||
|
|
|
||
|
|
@Bean
|
||
|
|
public ServletWebServerFactory servletContainer() {
|
||
|
|
TomcatServletWebServerFactory tomcat = new TomcatServletWebServerFactory();
|
||
|
|
tomcat.addAdditionalTomcatConnectors(createAjpConnector());
|
||
|
|
return tomcat;
|
||
|
|
}
|
||
|
|
|
||
|
|
private Connector createAjpConnector() {
|
||
|
|
Connector ajpConnector = new Connector(protocol);
|
||
|
|
ajpConnector.setPort(8009);
|
||
|
|
ajpConnector.setSecure(false);
|
||
|
|
ajpConnector.setAllowTrace(false);
|
||
|
|
ajpConnector.setScheme("http");
|
||
|
|
return ajpConnector;
|
||
|
|
}
|
||
|
|
}
|