這篇文章給大家分享的是有關(guān)SpringBoot2.0整合SpringCloud Finchley @hystrixcommand注解找不到怎么辦的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
成都創(chuàng)新互聯(lián)是創(chuàng)新、創(chuàng)意、研發(fā)型一體的綜合型網(wǎng)站建設(shè)公司,自成立以來公司不斷探索創(chuàng)新,始終堅持為客戶提供滿意周到的服務(wù),在本地打下了良好的口碑,在過去的10余年時間我們累計服務(wù)了上千家以及全國政企客戶,如成都格柵板等企業(yè)單位,完善的項目管理流程,嚴(yán)格把控項目進度與質(zhì)量監(jiān)控加上過硬的技術(shù)實力獲得客戶的一致贊譽。
hystrix參數(shù)使用方法
通過注解@HystrixCommand的commandProperties去配置,
如下就是hystrix命令超時時間命令執(zhí)行超時時間,為1000ms和執(zhí)行是不啟用超時
@RestController public class MovieController { @Autowired private RestTemplate restTemplate; @GetMapping("/movie/{id}") @HystrixCommand(commandProperties = { @HystrixProperty(name = "execution.isolation.thread.timeoutInMilliseconds", value = "1000"), @HystrixProperty(name = "execution.timeout.enabled", value = "false")},fallbackMethod = "findByIdFallback") public User findById(@PathVariable Long id) { return this.restTemplate.getForObject("http://microservice-provider-user/simple/" + id, User.class); } /** * fallback方法 * @param id * @return */ public User findByIdFallback(Long id) { User user = new User(); user.setId(5L); return user; } }
問題描述:
筆者在使用Spring Boot 2.0整合Spring Cloud Finchley.RC2版本時,使用斷路器 Hystrix時候發(fā)現(xiàn)@hystrixcommand注解找不到,由于Spring Boot 2.0剛出沒多久,所以這塊資料網(wǎng)上很少,查閱資料說是新版本中不包含此注解了,需要重新引入。
報錯信息:
源碼:
解決方案:pom.xml添加依賴
com.netflix.hystrix hystrix-javanica RELEASE
完整pom.xml
4.0.0 com.serverribbon serverribbon 0.0.1-SNAPSHOT jar serverribbon Demo project for Spring Boot org.springframework.boot spring-boot-starter-parent 2.0.2.RELEASE UTF- UTF- 1.8 Finchley.RC2 org.springframework.cloud spring-cloud-starter-netflix-eureka-server org.springframework.cloud spring-cloud-starter-ribbon org.springframework.cloud spring-cloud-starter-hystrix com.netflix.hystrix hystrix-javanica RELEASE org.springframework.boot spring-boot-starter-test test com.netflix.hystrix hystrix-core RELEASE com.netflix.hystrix hystrix-core RELEASE org.springframework.cloud spring-cloud-dependencies ${spring-cloud.version} pom import org.springframework.boot spring-boot-maven-plugin spring-milestones Spring Milestones https://repo.spring.io/milestone false
在程序的啟動類ServiceRibbonApplication 加@EnableHystrix注解開啟Hystrix
感謝各位的閱讀!關(guān)于“SpringBoot2.0整合SpringCloud Finchley @hystrixcommand注解找不到怎么辦”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!