All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.mustfun.warning.biz.BootLauncher Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy