21 lines
551 B
Java
21 lines
551 B
Java
package com.test;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.cloud.netflix.hystrix.dashboard.EnableHystrixDashboard;
|
|
|
|
/**
|
|
* ClassName: HystrixApplication
|
|
* Package: com.test
|
|
*
|
|
* @author yovinchen
|
|
* @Create 2023/8/15 21:19
|
|
*/
|
|
@SpringBootApplication
|
|
@EnableHystrixDashboard
|
|
public class HystrixDashBoardApplication {
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(HystrixDashBoardApplication.class, args);
|
|
}
|
|
}
|