疯狂的狮子Li
2023-11-10 abc3acf489bb104f5d4187d7b10814e73dc71083
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);
    }
 
}