摘要: ```shell POST _reindex { "source": { "index": "旧索引名称" }, "dest": { "index": "新索引名称" } } ``` 可用于索引重建,数据迁移等场景 阅读全文
posted @ 2023-07-06 13:48 BINGYANGW 阅读(15) 评论(0) 推荐(0) 编辑
摘要: title: 将文件夹打成war包 date: 2021-08-13 08:55:00 tags: - Java categories: Java 文件夹打成war包 ``` jar -cvf abc.war * ``` war包解成文件夹 ``` jar -xvf abc.war ``` 阅读全文
posted @ 2023-06-16 11:30 BINGYANGW 阅读(19) 评论(0) 推荐(0) 编辑
摘要: title: weblogic安装 date: 2021-07-29 22:06:00 tags: - weblogic categories: weblogic ### 1. 安装jdk ```shell # 配置环境变量 vim /etc/profile # JAVA_HOME,jdk解压后路径 阅读全文
posted @ 2023-06-16 11:29 BINGYANGW 阅读(48) 评论(0) 推荐(0) 编辑
摘要: ```shell chcp 65001 @echo off setlocal EnableDelayedExpansion set /p folderPath="请输入需要修改前缀的文件夹路径: " set /p oldPrefix="请输入原前缀: " set /p newPrefix="请输入新 阅读全文
posted @ 2023-06-16 11:16 BINGYANGW 阅读(622) 评论(0) 推荐(0) 编辑
摘要: title: npm配置淘宝镜像 date: 2023-03-13 13:44:00 tags: - node - 前端 categories: node cover: https://i.loli.net/2020/03/30/PVp2TgjSiMDhv7F.jpg ```shell npm co 阅读全文
posted @ 2023-06-16 09:36 BINGYANGW 阅读(21) 评论(0) 推荐(0) 编辑
摘要: ```shell sudo -H -u sonar /home/tools/sonar/sonarqube-7.9.5/bin/linux-x86-64/sonar.sh start ``` 阅读全文
posted @ 2023-06-16 09:35 BINGYANGW 阅读(173) 评论(0) 推荐(0) 编辑
摘要: title: Linux环境下JDK安装 date: 2020-03-30 20:46:00 tags: - Linux - Java categories: Java ## 安装JDK ### 将JDK导入opt目录下面的software文件夹 ### 解压JDK到/opt/module目录下 ` 阅读全文
posted @ 2023-06-16 09:33 BINGYANGW 阅读(54) 评论(0) 推荐(0) 编辑
摘要: URLEncoder.encode(name, "UTF 8").replaceAll("\\+", "%20"); 阅读全文
posted @ 2020-05-13 16:09 BINGYANGW 阅读(355) 评论(0) 推荐(0) 编辑
摘要: 1.将Github项目导入码云 2.从码云中clone项目到本地 3.将下载下来的项目关联至Github仓库 阅读全文
posted @ 2020-05-13 14:23 BINGYANGW 阅读(112) 评论(0) 推荐(0) 编辑