摘要:
Kafka学习01:默认分区策略解析 Kafka版本:2.5.1 DefaultPartitioner 类 /** * The default partitioning strategy: * <ul> * <li>If a partition is specified in the record, 阅读全文
摘要:
Java异常处理008:RestTemplate请求Could not extract response: no suitable HttpMessageConverter found for response type.... content type [text/html;charset=UTF 阅读全文
摘要:
Java深入学习31:ArrayList并发异常以及解决方案 先看一个ArrayList多线程的下的案例。 该案例会出现一些异常的情况,,期中有两个异常需要留意 public class ArrayListConcurrentTest { public static void main(String 阅读全文
摘要:
Java深入学习29:线程等待和唤醒的两个方案 模拟场景 一个门店,有一个店员,有消费者来消费商品(每次消费1件商品),有仓库人员来添加(生产)商品(每次生产1件商品),并假设库存上限是2. 基础代码实现 public class ThreadNotifyTest { public static v 阅读全文