forked from kidgrow-microservices-platform

zhaoxiaohao
2020-04-26 3b634c3db32ca2eb3f661c29b3ff088a7f42318a
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);
    }
}