From 9efec0ee76bdfabf10d964b71f089b761e8708bf Mon Sep 17 00:00:00 2001 From: xiaojunnuo Date: Thu, 19 Aug 2021 10:32:15 +0800 Subject: [PATCH] 1 --- README.md | 15 ++------------- other.md | 16 ++++++++++++++++ 2 files changed, 18 insertions(+), 13 deletions(-) create mode 100644 other.md diff --git a/README.md b/README.md index 84885ab..ac53210 100644 --- a/README.md +++ b/README.md @@ -285,20 +285,9 @@ Error: www.github.com:443, 代理请求超时 当git push的数据大于200k时,会报错,目前的方案不太好解决。 临时方案:切到安全模式,尝试git push,多试几次就可以了。 -### 8、 Java程序使用 -需要先通过keytool安装证书 -`keytool -import -alias dev-sidecar -keystore "jdk路径\security\cacerts" -file 用户目录\.dev-sidecar\dev-sidecar.ca.crt`默认密码为`changeit` -启动时还需要设置参数 -`-Dhttp.proxyHost=localhost -Dhttp.proxyPort=1181 -Dhttps.proxyHost=localhost -Dhttps.proxyPort=1181` -Gradle还需在`用户目录/.gradle/gradle.properties`创建配置文件 -```properties -systemProp.http.proxyHost=localhost -systemProp.http.proxyPort=1181 -systemProp.https.proxyHost=localhost -systemProp.https.proxyPort=1181 -``` - +## 在其他程序使用 +* [java程序使用](./other.md#Java程序使用) ## 贡献代码 diff --git a/other.md b/other.md new file mode 100644 index 0000000..e057f02 --- /dev/null +++ b/other.md @@ -0,0 +1,16 @@ +# 其他程序使用 + +## Java程序使用 + > 由[Enaium](https://github.com/Enaium) 提供,未做验证,可供参考 +> +需要先通过keytool安装证书 +`keytool -import -alias dev-sidecar -keystore "jdk路径\security\cacerts" -file 用户目录\.dev-sidecar\dev-sidecar.ca.crt`默认密码为`changeit` +启动时还需要设置参数 +`-Dhttp.proxyHost=localhost -Dhttp.proxyPort=1181 -Dhttps.proxyHost=localhost -Dhttps.proxyPort=1181` +Gradle还需在`用户目录/.gradle/gradle.properties`创建配置文件 +```properties +systemProp.http.proxyHost=localhost +systemProp.http.proxyPort=1181 +systemProp.https.proxyHost=localhost +systemProp.https.proxyPort=1181 +``` \ No newline at end of file