上一页 1 2 3 4 5 6 ··· 34 下一页
摘要: 文档删除 1、单个 2、批量 阅读全文
posted @ 2023-11-11 10:46 翠微 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 文档更新 1、单个 2、批量 阅读全文
posted @ 2023-11-11 10:45 翠微 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 创建空索引 PUT myindex { "settings": { "number_of_shards": 1, "number_of_replicas": 1 }, "mappings": { "properties": { "name": { "type": "keyword", "ignore 阅读全文
posted @ 2023-11-11 10:44 翠微 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 对象 @ConfigurationProperties(prefix = "system-upload-prefix") @Configuration @RefreshScope @Data public class SystemUploadPrefix { private String uploa 阅读全文
posted @ 2023-11-09 18:34 翠微 阅读(35) 评论(0) 推荐(0) 编辑
摘要: String.format 1、字符串左对齐,不足10位的右侧补空格:[123 ] String.format("%-10s", "123"); 2、字符串右对齐,不足10位的左侧补空格:[ 123] String.format("%10s", "123"); 3、整数格式化10位,不足左侧补0:[ 阅读全文
posted @ 2023-11-08 13:31 翠微 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 【CentOS7】rsync文件同步 阅读全文
posted @ 2023-09-04 14:59 翠微 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 【Java Web】行锁for update begin; select * from system_role where id_ = '1626887644786495491' for update; update system_role set version_ = 0 where id_ = 阅读全文
posted @ 2023-08-09 21:56 翠微 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 格式 struct 名称 struct Rectangle { int width; int height; }; int area(struct Rectangle rectangle); int area(struct Rectangle rectangle) { return rectangl 阅读全文
posted @ 2023-08-03 22:55 翠微 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 【RabbitMQ】禁用AMQP配置中的明文身份验证机制 参考博文 https://blog.csdn.net/u013551615/article/details/126314195 1、生成rabbitmq证书 #克隆生成证书的仓库到/ycx目录 git clone --depth 1 http 阅读全文
posted @ 2023-07-25 10:57 翠微 阅读(395) 评论(0) 推荐(0) 编辑
摘要: 【Rust】IO操作 1、控制台读取一行字符串 let mut line = String::new(); std::io::stdin() .read_line(&mut line) .expect("Failed to read line"); 阅读全文
posted @ 2023-07-20 14:38 翠微 阅读(17) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 34 下一页