forked from kidgrow-microservices-platform

克 刘
2020-08-22 f6e412e2dec286a87ac53efb7ba07a41df7f529f
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);
    }
}