摘要: 注意:由于使用方式的限制,这种值的传递只能单向 由于特性还在孵化阶段 用法可能在21中有变动 static final ScopedValue<Long> scopedValue = ScopedValue.newInstance(); // test scoped value @Test publ 阅读全文
posted @ 2023-04-06 17:57 大哥超帅 阅读(622) 评论(0) 推荐(0) 编辑
摘要: ```java MockedStatic utils = Mockito.mockStatic(SpringContextUtils.class); utils.when(() ->SpringContextUtils.publishEvent(any())).thenAnswer(invocati 阅读全文
posted @ 2023-02-22 17:42 大哥超帅 阅读(2903) 评论(1) 推荐(1) 编辑
摘要: Jmockit 1.46+ junit4 package xxx;XXXProgress import xxx; import com.baomidou.mybatisplus.core.conditions.Wrapper; import com.google.common.collect.Lis 阅读全文
posted @ 2023-02-22 17:25 大哥超帅 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 仅供参考 Jmockit 1.46+ junit4 package xxxx; import xxxx; import com.google.common.collect.Lists; import mockit.Capturing; import mockit.Expectations; impo 阅读全文
posted @ 2023-02-22 17:21 大哥超帅 阅读(204) 评论(0) 推荐(0) 编辑
摘要: XMLInputFactory xif = XMLInputFactory.newInstance(); List<ProcessDefinition> list = repositoryService.createProcessDefinitionQuery().latestVersion().l 阅读全文
posted @ 2023-02-20 18:13 大哥超帅 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 支持矩阵|SUSE 阅读全文
posted @ 2023-02-03 11:30 大哥超帅 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 文档 官方文档 编译文件 20240115 链接已更新 https://www.alipan.com/s/Zo8njH92AH3 这是一个自解压文件,打开后是一个tar.gz压缩文件 对应文档中 /data/tbase/install/ 下的文件 在centos7下编译 不保证可用,以源码为准 do 阅读全文
posted @ 2023-01-11 13:40 大哥超帅 阅读(565) 评论(0) 推荐(0) 编辑
摘要: ##Lock redisson的基本lock实现, 使用发布订阅机制实现通信 可以查看源码中pubSub的相关使用 ##SpinLock 使用"Exponential Backoff strategy"指数退避策略实现的分布式锁,区别于基本的RedissonLock的发布订阅模式,SpingLock 阅读全文
posted @ 2022-12-28 15:11 大哥超帅 阅读(958) 评论(0) 推荐(0) 编辑
摘要: 在用virtual box 虚拟机搭建k3s集群的时候最好不要搞双网卡,比如一个网卡连外网另一个网卡通信,在agent连master的时候可能会有问题(本人刚刚经历过), 虽然我的有道机翻给外国人看懵了但最终还是得到了答案A K3S cluster working in a dual network 阅读全文
posted @ 2022-12-02 11:10 大哥超帅 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 如果你开发项目时对项目之后的发展很清晰但仍陷入了为什么要用设计模式替换if else 的疑问时就说明你项目的体量不需要用设计模式 答案只在问题提出之后有意义 工厂+简易享元模式+枚举用法 首先定义一个枚举存储业务信息 import lombok.Getter; /** * date: 2022-10 阅读全文
posted @ 2022-10-30 14:49 大哥超帅 阅读(187) 评论(0) 推荐(0) 编辑