forked from kidgrow-microservices-platform

zhaoxiaohao
2020-09-29 0513dfefff9e00e5bbd58d34011138446f8b9c14
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);
    }
}