Jhipster Microservice和Hystrix

时间:2016-07-21 11:52:34

标签: spring-boot jhipster hystrix

我用JHipster创建了一个微服务,我想添加hystrix,但是我遇到了问题。

我的@EnableHystrix上有ServiceApp.java,方法@HystrixCommand上有@RequestMapping

但是当我想访问http://localhost:8081/hystrix.stream(这是一个好的端口)时,我会看到这个页面:

  

您的请求无法处理

我不知道它来自哪里,安全问题,但我无法成功解决。

感谢您的帮助。抱歉我的英语不好。

1 个答案:

答案 0 :(得分:1)

Jhipster默认设置执行器属性management.context-path to / management
因此,您的hystrix流应该在http://localhost:8081/management/hystrix.stream

处可用