heheng
2024-11-20 44819a81b566a504554780afd4dd64fee0be7bb5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.gkhy;
 
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
 
/**
 * web容器中进行部署
 * 
 * @author expert
 */
public class expertServletInitializer extends SpringBootServletInitializer
{
    @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder application)
    {
        return application.sources(expertApplication.class);
    }
}