com.github.mustfun.warning.biz.BootLauncher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of warning-control-core Show documentation
Show all versions of warning-control-core Show documentation
a active warning systems for most of web project
package com.github.mustfun.warning.biz;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
/**
* @author dengzhiyuan
*/
@SpringBootApplication
@ComponentScan(basePackages = {"com.github.mustfun.warning"})
public class BootLauncher {
public static void main(String[] args) {
SpringApplication springApplication = new SpringApplication(BootLauncher.class);
springApplication.run(args);
}
}