码迷,mamicode.com
首页 > 编程语言 > 详细

springcoud feign超时的问题

时间:2018-12-28 21:10:43      阅读:585      评论:0      收藏:0      [点我收藏+]

标签:and   app   引入   ogg   framework   enabled   enable   artifact   time   

配置

#开启超时控制 打开feign-hystix
feign.hystrix.enabled=true
ribbon.ReadTimeout=60000
ribbon.ConnectTimeout=60000
#如果enabled设置为false,则请求超时交给ribbon控制
hystrix.command.default.execution.timeout.enabled=true
#设置超时时间  单位是毫秒
hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds=60000  

熔断器一定要引入

<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>

代码

@Component
public class SendInfoAuditFallBack implements SendInfoAudit {
    private Logger logger = LoggerFactory.getLogger(SendInfoAuditFallBack.class);

    @Override
    public String proclmInfo(String plyNo) {
        logger.error("请求定责系统异常:" + plyNo);
        return "error 401";
    }
}
@FeignClient(name="claimaudit",fallback = SendInfoAuditFallBack.class)
public interface SendInfoAudit {
    @RequestMapping(value = "/fixDutyServiceController/proclmInfo")
    public String proclmInfo(@RequestParam("plyNo") String plyNo);
}

 

springcoud feign超时的问题

标签:and   app   引入   ogg   framework   enabled   enable   artifact   time   

原文地址:https://www.cnblogs.com/mutong1228/p/10192760.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!