地质所 沉降监测网建设项目
chenhuan
2024-05-16 98b1fc47a5c40422a7289c9ac10960f26f742d93
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.javaweb;
 
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
 
/**
 * web容器中进行部署
 * 
 * @author javaweb
 */
public class JavaWebServletInitializer extends SpringBootServletInitializer
{
    @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder application)
    {
        return application.sources(JavaWebApplication.class);
    }
}