/*
1、构造请求数据,将对象转为json;
RequestTemplate template = buildTemplateFromArgs.create(argv);
2、发送请求进行执行(执行成功会解码响应数据):
executeAndDecode(template);
3、执行请求会有重试机制
while(true){
try{
executeAndDecode(template);
}catch(){
try{retryer.continueOrPropagate(e);}catch(){throw ex;}
continue;
}
}
/
执行请求有重试机制. 先执行真正要执行的请求,如果出现异常,就进行重试,默认有重试次数,在重试次数内都没有成功执行请求,则会一直重复进行重试.如果执行成功,则不会进行重试.