@RestController public class TestController extends Object
@HystrixCommand(threadPoolKey="testThreadPoolKey",commandProperties={@HystrixProperty(name="execution.isolation.strategy",value="THREAD"),@HystrixProperty(name="execution.isolation.thread.timeoutInMilliseconds",value="1000"),@HystrixProperty(name="circuitBreaker.enabled",value="true"),@HystrixProperty(name="circuitBreaker.requestVolumeThreshold",value="200")},threadPoolProperties={@HystrixProperty(name="coreSize",value="5"),@HystrixProperty(name="maxQueueSize",value="10")})
@GetMapping(value="/dtp-nacos-cloud-example/test")
public String test()
throws InterruptedException
public void task()
throws InterruptedException
Copyright © 2022. All rights reserved.