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

net.guerlab.smart.article.web.ArticleWebStarter Maven / Gradle / Ivy

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

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;

/**
 * 文章服务启动
 *
 * @author guer
 */
@SpringBootApplication
@EnableDiscoveryClient
public class ArticleWebStarter {

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy