You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
763 B
Java
26 lines
763 B
Java
4 years ago
|
package com.glxp.sale;
|
||
|
|
||
|
import org.springframework.boot.SpringApplication;
|
||
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||
|
import org.springframework.boot.builder.SpringApplicationBuilder;
|
||
|
import org.springframework.boot.web.servlet.ServletComponentScan;
|
||
|
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
|
||
|
|
||
|
|
||
|
@SpringBootApplication
|
||
|
@ServletComponentScan
|
||
|
public class ApiAdminApplication extends SpringBootServletInitializer {
|
||
|
|
||
|
|
||
|
|
||
|
public static void main(String[] args) {
|
||
|
SpringApplication.run(ApiAdminApplication.class, args);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) {
|
||
|
return builder.sources(ApiAdminApplication.class);
|
||
|
}
|
||
|
|
||
|
}
|