`
arpenker
  • 浏览: 358237 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论
文章列表

vs code 下载

https://code.visualstudio.com/docs/?dv=win 原生代码就安装插件  live
https://nodejs.org/zh-cn/download/

post json

  try {             String dingDingToken = "https://oapi.....";             // 请求的JSON数据,这里我用map在工具类里转成json格式             //配置提醒内容             Map<String, Object> json = new HashMap();             Map<String, Object> text = new HashMap();             json.put("msgtype&qu ...

post json

package com.arpenker.stockrobot.dingding; import com.alibaba.fastjson.JSON; //import com.sun.org.slf4j.internal.Logger; //import com.sun.org.slf4j.internal.LoggerFactory; import org.apache.http.client.methods.HttpPost; import org.apache.http.entity.StringEntity; import org.apache.http.util.EntityUt ...

resttemplate

private static ResponseEntity<Object> postMethod(ResponseEntity<Object> responseEntity, RestTemplate restTemplate,                                                      String url, HttpHeaders headers, Map<String, Object> pathParams,                                                    ...

量化工

String url = "https://api.doctorxiong.club/v1/fund/rank";         RestTemplate restTemplate = new RestTemplate();         HttpHeaders headers = new HttpHeaders();         MediaType type=MediaType.parseMediaType("application/json;charset=UTF-8");         headers.setContentType(type ...
package shortcutKey; public class shortcutKey {     /**      * Eclipse中的快捷键:      * 1.不全代码的声明:Alt + /      * 2.快速修复:Ctrl + 1      * 3.批量导包:Ctrl + Shift + o      * 4.使用单行注释:Ctrl + /      * 5.使用多行注释:Ctrl + Shift + /      * 6.取消多行注释:Ctrl + Shift + \      * 7.复制指定行的代码:Ctrl + Alt + down 或Ctrl + Alt + up/ ...

b64

//1 String str = appkey + ":" + secret;         byte[] b = str.getBytes("UTF-8");         String secretb = Base64.encodeBase64String(b);         System.out.println(secretb); //2 String key = appkey+":"+secret;;         key = encode(key);         System.out.println(k ...
Caused by: java.net.ConnectException: Connection timed out: connect     at java.base/sun.nio.ch.Net.connect0(Native Method)     at java.base/sun.nio.ch.Net.connect(Net.java:483)     at java.base/sun.nio.ch.Net.connect(Net.java:472)     at java.base/sun.nio.ch.SocketChannelImpl.connect(SocketChannelIm ...
Internal error. Please refer to https://jb.gg/ide/critical-startup-errors com.intellij.ide.plugins.StartupAbortedException: Cannot start app     at com.intellij.idea.StartupUtil.lambda$start$15(StartupUtil.java:263)     at java.base/java.util.concurrent.CompletableFuture.uniExceptionally(Completable ...

ideajdk

「ideajdk」https://www.aliyundrive.com/s/q5FMRJhjooB 点击链接保存,或者复制本段内容,打开「阿里云盘」APP ,无需下载极速在线查看,视频原画倍速播放。
「tools」https://www.aliyundrive.com/s/wZpKu9ZNusB 点击链接保存,或者复制本段内容,打开「阿里云盘」APP ,无需下载极速在线查看,视频原画倍速播放。

nohup java

nohup java -jar test.jar > ./logs/registry.out 2>&1&

nohup java

springboot 项目内嵌tomcat,一般打包成jar 直接使用 idea 执行打包操作,打包完成后在项目目录中就会生成 target 目录 把生成的 jar 包上传到服务器中,配置好对应的数据库信息等 执行命令 java -jar xxx.jar 1 后台运行不挂断进程,当窗口关闭时后台进程仍然运行,该进程所有输出被重定向到默认生成的nohup.out文件中。 nohup java -jar xxx.jar & 1 追加运行的日志文件到指定文件中 nohup java -jar xxx.jar > test.log & 1 也可以把上面的命名写成shell脚本文 ...

linux下安装jdk

    博客分类:
  • jdk
Linux 安装JDK(jdk-8u121-linux-x64.tar.gz) 一、JDK准备      1.1 文件名称           jdk-8u121-linux-x64.tar.gz      1.2 下载地址          http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html 二、工具准备     2.1 Xshell       一个强大的安全终端模拟软件,它支持SSH1, SSH2, 以及Microsoft Windows 平台的TELNET 协议。 ...
Global site tag (gtag.js) - Google Analytics