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

net.guerlab.smart.banner.web.BannerWebStarter Maven / Gradle / Ivy

There is a newer version: 21.0.0
Show newest version
package net.guerlab.smart.banner.web;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import tk.mybatis.spring.annotation.MapperScan;

/**
 * Banner服务启动
 *
 * @author guer
 */
@SpringBootApplication
@EnableDiscoveryClient
public class BannerWebStarter {

    public static void main(String[] args) {
        SpringApplication.run(BannerWebStarter.class, args);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy