xiaopang-8

Results 1 issues of xiaopang-8

**现在有这样一个需求, 我在A服务中调用B服务, 但是B服务要求每秒总请求不能超过60QPS, 例如,如下Feign客户端, 我应该怎么写才能实现对类中所有方法的总QPS进行限制 还有一种按分钟的, 每分钟不能超过2000QPS应该怎么实现** ``` import org.springframework.cloud.openfeign.FeignClient; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; /** * 用户服务 * */ @FeignClient(contextId = "remoteUserService", value = "ruoyi-system") public interface RemoteUserService { @GetMapping(value...