forked from kidgrow-microservices-platform

zhaoxiaohao
2020-07-25 cb9bc5daaa7ee5978c07d5107d3301473617f367
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.kidgrow.monitor;
 
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.netflix.hystrix.dashboard.EnableHystrixDashboard;
 
@SpringBootApplication
@EnableDiscoveryClient
@EnableHystrixDashboard
public class HystrixDashboardApplication {
    public static void main(String[] args) {
        SpringApplication.run(HystrixDashboardApplication.class,args);
    }
}