42 lines
1.6 KiB
Java
42 lines
1.6 KiB
Java
package com.adc.da;
|
|
|
|
import org.apache.catalina.connector.Connector;
|
|
import org.mybatis.spring.annotation.MapperScan;
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration;
|
|
import org.springframework.boot.web.embedded.tomcat.TomcatConnectorCustomizer;
|
|
import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
|
|
import org.springframework.boot.web.servlet.ServletComponentScan;
|
|
import org.springframework.boot.web.servlet.server.ConfigurableServletWebServerFactory;
|
|
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
|
|
import org.springframework.cloud.openfeign.EnableFeignClients;
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
|
|
|
@EnableEurekaClient
|
|
@EnableFeignClients
|
|
@ServletComponentScan
|
|
@SpringBootApplication(exclude = SecurityAutoConfiguration.class)
|
|
@EnableScheduling
|
|
@MapperScan(value = {"com.adc.da.file.store"})
|
|
public class AdcDaApplication {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(AdcDaApplication.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;
|
|
}
|
|
|
|
}
|