上一页 1 2 3 4 5 6 7 ··· 22 下一页
摘要: ``` @ApiOperation("test") @GetMapping("/test") public JsonResult test() { String APP_ID = "aaa"; String APP_SECRET = "bbb"; String API_URL = "/common/ 阅读全文
posted @ 2023-09-07 00:06 Arborblog 阅读(19) 评论(0) 推荐(0) 编辑
摘要: RabbitMq 消息延迟消费 ``` message.getMessageProperties().setDelay(5000) ``` 死信就是消息在特定场景下的一种表现形式,这些场景包括: 消息被拒绝(basic.reject / basic.nack),并且requeue = false 消 阅读全文
posted @ 2023-09-06 23:05 Arborblog 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 按下win+r键输入regedit,打开注册表在注册表编辑器窗口,依次展开 ``` HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Wallpapers ``` (可以直接复制粘贴这个路径), 点击选中Wall 阅读全文
posted @ 2023-08-21 10:57 Arborblog 阅读(268) 评论(0) 推荐(0) 编辑
摘要: ``` yum install -y zip unzip ``` 阅读全文
posted @ 2023-08-15 15:31 Arborblog 阅读(86) 评论(0) 推荐(0) 编辑
摘要: ``` Function fc = Function.identity(); Function stringStringFunction = fc.andThen(this::handleStra); Function stringStringFunction1 = fc.andThen(this: 阅读全文
posted @ 2023-07-26 20:46 Arborblog 阅读(7) 评论(0) 推荐(0) 编辑
摘要: ``` ALTER TABLE tar_kol MODIFY k_name VARCHAR(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci; ``` 阅读全文
posted @ 2023-07-19 14:15 Arborblog 阅读(2) 评论(0) 推荐(0) 编辑
摘要: ``` Quote对象 Map kolQuote = quoteInfos.stream().collect(Collectors.toMap(Quote::getQuoteNum, Function.identity(), (key1, key2) -> key2)); Function.iden 阅读全文
posted @ 2023-07-17 14:19 Arborblog 阅读(5) 评论(0) 推荐(0) 编辑
摘要: ``` //查询全部 page.setCurrent(-1); page.setSize(-1); ``` 阅读全文
posted @ 2023-07-06 14:46 Arborblog 阅读(6) 评论(0) 推荐(0) 编辑
摘要: System.out.println(Optional.ofNullable(list.get(1)).map(TarKol::getId).orElse(1)); 阅读全文
posted @ 2023-07-04 13:25 Arborblog 阅读(4) 评论(0) 推荐(0) 编辑
摘要: jpa apt-maven-plugin 生成的逆向Q类,不进行git提交 将某个插件生成的文件也作为源文件在代码内进行使用 ![](https://img2023.cnblogs.com/blog/2587651/202306/2587651-20230627165855109-687920808 阅读全文
posted @ 2023-06-27 17:00 Arborblog 阅读(14) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 22 下一页