疯狂的狮子Li
2024-06-20 59edca8fcaa79a00e6f7f2325b9c81067208d691
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.dromara;
 
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
 
/**
 * web容器中进行部署
 *
 * @author Lion Li
 */
public class DromaraServletInitializer extends SpringBootServletInitializer {
 
    @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
        return application.sources(DromaraApplication.class);
    }
 
}