Blame view

cloud/fIle-center/src/main/java/com/sincere/file/FileApplication.java 479 Bytes
dc4df863   陶汉栋   优化定时服务和片网络图片映射
1
2
3
4
5
6
package com.sincere.file;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
97289310   陶汉栋   文件服务优化接口
7

dc4df863   陶汉栋   优化定时服务和片网络图片映射
8
@EnableDiscoveryClient
8b94a56a   徐泉   修改提交
9
@SpringBootApplication
dc4df863   陶汉栋   优化定时服务和片网络图片映射
10
11
12
13
public class FileApplication {

    public static void main(String[] args) {
        SpringApplication.run(FileApplication.class,args);
e92e5a92   陶汉栋   增加网关负载
14
    }
dc4df863   陶汉栋   优化定时服务和片网络图片映射
15
}