摘要:
Ribbon是SpringCloud中提供负载均衡策略的组件。 负载均衡中的角色 LoadBalancerInterceptor 对带有@LoadBalance的RestTemplate的http请求进行拦截。 public class LoadBalancerInterceptor impleme 阅读全文
摘要:
我有这样一个Service,我需要在外面注入queueSize和timeout这两个属性: @Service @Slf4j public class BlockingQueueMessageService implements MessageService, InitializingBean { p 阅读全文
摘要:
RowBounds的内存分页 SqlSession的各种查询方法中都有一个可选的RowBounds参数,该对象用于MyBatis实现内存分页: RowBounds有这样两个属性: private final int offset; private final int limit; limit是每一页 阅读全文