19 lines
485 B
Java
19 lines
485 B
Java
|
|
package com.xdadan.erp;
|
||
|
|
|
||
|
|
import org.springframework.boot.builder.SpringApplicationBuilder;
|
||
|
|
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* web容器中进行部署
|
||
|
|
*
|
||
|
|
* @author xdadan
|
||
|
|
*/
|
||
|
|
public class LaunchServletInitializer extends SpringBootServletInitializer
|
||
|
|
{
|
||
|
|
@Override
|
||
|
|
protected SpringApplicationBuilder configure(SpringApplicationBuilder application)
|
||
|
|
{
|
||
|
|
return application.sources(LaunchApplication.class);
|
||
|
|
}
|
||
|
|
}
|