标签:too span throw pre 打包 gap oid configure down
类似下面的代码,要继承SpringBootServletInitializer
@SpringBootApplication
public class Application extends SpringBootServletInitializer {
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
return application.sources(Application.class);
}
public static void main(String[] args) throws Exception {
SpringApplication.run(Application.class, args);
}
}
spring boot 生成 war 包有一个war.original是什么?
标签:too span throw pre 打包 gap oid configure down
原文地址:https://www.cnblogs.com/jpfss/p/9718635.html