上一篇文章hystrix使用中講解了使用Hystrix的基本方法,能夠看出須要手寫大量代碼,作爲一個不愛動手的程序猿固然以爲麻煩,因此Javanica誕生了。
Javanica項目經過引入支持註解,使Hystrix更容易使用:
1.添加依賴java
<dependency> <groupId>com.netflix.hystrix</groupId> <artifactId>hystrix-core</artifactId> <version>1.5.11</version> </dependency> <dependency> <groupId>com.netflix.hystrix</groupId> <artifactId>hystrix-javanica</artifactId> <version>1.5.11</version> </dependency>
2.添加AOPsegmentfault
<aop:aspectj-autoproxy/> <bean id="hystrixAspect" class="com.netflix.hystrix.contrib.javanica.aop.aspectj.HystrixCommandAspect"></bean>
3.添加HystrixCommand註解ui
public class StudentService { ... @HystrixCommand(groupKey= "group", commandKey = "commandkey" commandProperties = { @HystrixProperty(name = "execution.isolation.thread.timeoutInMilliseconds", value = "100")}) public Student getNameById(String id) { return studentResource.getNameById(id); } } ...
更多配置:
execution.isolation.thread.timeoutInMilliseconds|執行超時時間|default:1000
circuitBreaker.requestVolumeThreshold|觸發斷路最低請求數|default:20
circuitBreaker.sleepWindowInMilliseconds|斷路器恢復時間|default:5000
circuitBreaker.errorThresholdPercentage|觸發短路錯誤率,單位%|default:50
coreSize|線程池核心數|default:10
maxQueueSize|隊列長度|default:-1(SynchronousQueue)
queueSizeRejectionThreshold|隊滿拒絕服務閾值|default:5|此值生效優先於隊滿
metrics.rollingStats.timeInMilliseconds|窗口維持時間|默認10000
metrics.rollingPercentile.numBuckets|窗口拆分數|默認10.net