main
parent
8281a69ad9
commit
9887683d83
@ -1,26 +0,0 @@
|
|||||||
package cokr.xit.base.boot;
|
|
||||||
|
|
||||||
import org.springframework.boot.autoconfigure.ImportAutoConfiguration;
|
|
||||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
||||||
import org.springframework.test.context.ContextConfiguration;
|
|
||||||
|
|
||||||
import cokr.xit.foundation.boot.CommonConfig;
|
|
||||||
import cokr.xit.foundation.boot.DatasourceConfig;
|
|
||||||
import cokr.xit.foundation.boot.ServletConfig;
|
|
||||||
import cokr.xit.foundation.boot.TomcatConfig;
|
|
||||||
import cokr.xit.foundation.boot.TransactionConfig;
|
|
||||||
|
|
||||||
@SpringBootApplication
|
|
||||||
@ImportAutoConfiguration({
|
|
||||||
CommonConfig.class,
|
|
||||||
ServletConfig.class,
|
|
||||||
MvcConfig2.class,
|
|
||||||
DatasourceConfig.class,
|
|
||||||
TransactionConfig.class,
|
|
||||||
SecurityConfig.class,
|
|
||||||
TomcatConfig.class
|
|
||||||
})
|
|
||||||
@ContextConfiguration("classpath:spring/context-*.xml")
|
|
||||||
public class XitBaseApplication2 {
|
|
||||||
|
|
||||||
}
|
|
@ -1,21 +0,0 @@
|
|||||||
package cokr.xit.foundation.boot;
|
|
||||||
|
|
||||||
import org.apache.catalina.Context;
|
|
||||||
import org.apache.catalina.webresources.ExtractingRoot;
|
|
||||||
import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
|
|
||||||
import org.springframework.boot.web.server.WebServerFactoryCustomizer;
|
|
||||||
import org.springframework.context.annotation.Bean;
|
|
||||||
import org.springframework.context.annotation.Configuration;
|
|
||||||
|
|
||||||
@Configuration
|
|
||||||
public class TomcatConfig {
|
|
||||||
@Bean
|
|
||||||
public WebServerFactoryCustomizer<TomcatServletWebServerFactory> servletContainerCustomizer() {
|
|
||||||
return (TomcatServletWebServerFactory container) -> {
|
|
||||||
container.addContextCustomizers((Context context) -> {
|
|
||||||
context.setResources(new ExtractingRoot());
|
|
||||||
context.setReloadable(false);
|
|
||||||
});
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue