net.guerlab.smart.article.web.ArticleWebStarter Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2018-2021 guerlab.net and other contributors.
*
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE, Version 3 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* See the License for the specific language governing permissions and
* limitations under the License.
*/
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);
}
}