实现高并发下的SpringCloud中Hystrix请求合并
java1234
共 2239字,需浏览 5分钟
·
2020-12-24 00:47
点击上方蓝色字体,选择“标星公众号”
优质文章,第一时间送达
实现高并发下的SpringCloud中Hystrix请求合并
1、在pom.xml中引入maven包
org.springframework.cloud
spring-cloud-starter-netflix-hystrix
2.1.6.RELEASE
spring Boot 包引入,版本必须一致,否则启动报错。
org.springframework.boot
spring-boot-starter-parent
2.1.12.RELEASE
2、添加启动注解
@EnableCircuitBreaker该注解启动hystrix,否则不生效。
@SpringBootApplication
@EnableScheduling
@EnableSwagger2
@EnableCaching
@EnableAsync
@ServletComponentScan
@EnableMqHandlerScan(packages = {"com.sxgw.pcops.im.client.mq.handler"})
//使用hystrix必须增加
@EnableCircuitBreaker
public class ClientApplication {
public static void main(String[] args) {
SpringApplication.run(ClientApplication.class, args);
}
}
3、请求接口Controller
@Api(value = "测试")
@RestController
@RequestMapping("/test")
@Slf4j
public class TestController {
@Autowired
private UserBatchServiceImpl userBatchServiceImpl;
@ApiOperation("测试请求合并")
@PostMapping(value = "/userbyMerge/{id}")
public String userbyMerge(@PathVariable Long id) {
String ids = "";
try {
Future userFu = this.userBatchServiceImpl.getUserById(id);
ids = userFu.get();
}catch (Exception e){
e.printStackTrace();
}
return ids;
}
}
4、编写请求合并逻辑
timerDelayInMilliseconds 该参数设置的是线程池中间间隔时间,如间隔5000ms则是一个线程池等待5s后执行
/**
*
* @author
*
*/
@Component
public class UserBatchServiceImpl {
@HystrixCollapser(batchMethod = "getUserBatchById",scope= com.netflix.hystrix.HystrixCollapser.Scope.GLOBAL,
collapserProperties = {@HystrixProperty(name ="timerDelayInMilliseconds",value = "5000")})
public Future getUserById(Long id) {
throw new RuntimeException("This method body should not be executed");
}
@HystrixCommand
public List getUserBatchById(List ids) {
System.out.println("进入批量处理方法"+ids);
List ps = new ArrayList();
for (Long id : ids) {
ps.add(id+"");
}
return ps;
}
}
5、测试时通过jmeter测试工具测试可以查看到效果。
版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:
https://blog.csdn.net/qq_25891151/article/details/111386228
粉丝福利:Java从入门到入土学习路线图
???
?长按上方微信二维码 2 秒
感谢点赞支持下哈
评论