我在服务层的spring-boot应用程序中使用Hystrix(spring-cloud-dependencies
版本Camden.SR7)而没有回退方法。服务方法之一如下所示:
@HystrixCommand(commandKey = "prefs",
commandProperties = { @HystrixProperty(name = "execution.isolation.thread.timeoutInMilliseconds", value = "2000")})
@Override
public void savePrefs(PrefsRequestParams requestParams) throws Exception {
...
}
如果此方法执行的时间超过2秒,Hystrix将抛出java.util.concurrent.TimeoutException:null,并且REST响应将如下所示:
{
"timestamp": 1509452672714,
"status": 500,
"error": "Internal Server Error",
"exception": "java.util.concurrent.TimeoutException",
"message": "No message available",
"path": "/prefs"
}
通过这样的响应,不清楚实际抛出了哪种方法异常。如果我将spring-cloud-dependencies
版本更改为Brixton.SR5(之前的版本),则会返回明确的响应:
{
"timestamp": 1509452426819,
"status": 500,
"error": "Internal Server Error",
"exception": "com.netflix.hystrix.exception.HystrixRuntimeException",
"message": "prefs timed-out and fallback failed.",
"path": "/prefs"
}
所以新版本的Hystrix(实际上是spring-cloud-dependencies的新版本)不会抛出HystrixRuntimeException。这是一个错误还是我应该以另一种方式配置Hystrix以接收明确的消息错误?
我使用以下maven依赖项:
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-hystrix</artifactId>
<version>1.2.7.RELEASE</version>
</dependency>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Camden.SR7</version>
<type>pom</type>
<scope>import</scope>
</dependency>
...
来自maven依赖树的我看到com.netflix.hystrix:hystrix-core:jar:1.5.6:compile
版本使用spring-cloud-dependencies
Camden.SR7,
对于版本Brixton.SR5 - com.netflix.hystrix:hystrix-core:jar:1.5.3:compile
。
答案 0 :(得分:0)
更新到Javanica 1.5.12解决了这个问题。
从1.5.7开始,还有一个选项可以强制为所有未被忽略的异常抛出HystrixRuntimeException:
@HystrixCommand(raiseHystrixExceptions = {HystrixException.RUNTIME_EXCEPTION})
@Override
public void savePrefs(PrefsRequestParams requestParams) throws Exception {
...
}