摘要: 将博客搬至CSDN 阅读全文
posted @ 2023-08-27 18:27 Steven-Russell 阅读(6) 评论(0) 推荐(0) 编辑
摘要: .jks或者.keystore转换为.pem 注意:此处主要借助于sh脚本进行转换 新建shell脚本: 前提: 需要配置好keytool、openssl命令 证书转换路径: 1、jks -> pkcs12 -> pem 2、keystore -> pkcs12 -> pem 注意:jks和keys 阅读全文
posted @ 2023-08-27 16:49 Steven-Russell 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 前提条件: 配置了keytool工具(jdk环境变量) 配置好openssl .keystore转.pk12 keytool -importkeystore -srckeystore /root/server.keystore -destkeystore /root/server.pkcs12 -d 阅读全文
posted @ 2023-08-27 09:38 Steven-Russell 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 配置jdk 下载jdk https://www.oracle.com/java/technologies/downloads/#java8-linux 解压文件 tar -xvf jdk-8u381-linux-x64.tar.gz 配置环境变量 export PATH=$PATH:/root/jd 阅读全文
posted @ 2023-08-27 09:24 Steven-Russell 阅读(47) 评论(0) 推荐(0) 编辑
摘要: package com.wd.knapsack; public class Knapsack01 { public static void main(String[] args) { // 总个数 int count = 0; // 总容量 int amount = 0; // 每个物品的重量 in 阅读全文
posted @ 2023-08-26 16:45 Steven-Russell 阅读(6) 评论(0) 推荐(0) 编辑
摘要: hibernate环境配置 实体类 public class IdCard { private Integer id; private String address; private People people; public People getPeople() { return people; 阅读全文
posted @ 2023-08-16 00:14 Steven-Russell 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 配置hibernate环境 实体类 public class IdCard { private Integer id; private String address; public Integer getId() { return id; } public void setId(Integer id 阅读全文
posted @ 2023-08-16 00:14 Steven-Russell 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 配置hibernate环境 实体类 package com.wd.pojo; public class Student { private Integer id; private String name; public Integer getId() { return id; } public vo 阅读全文
posted @ 2023-08-16 00:14 Steven-Russell 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 98099bb7-a959-44e3-8cec-8fab0a3cfd49 下载es镜像 docker pull elasticsearch 启动es容器 docker run --name elasticsearch -p 9200:9200 -p 9300:9300 -e "discovery.t 阅读全文
posted @ 2023-08-12 21:09 Steven-Russell 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 引入Maven依赖: <properties> <httpclient-version>4.4.1</httpclient-version> </properties> <dependencies> <!-- httpclient --> <dependency> <groupId>org.apac 阅读全文
posted @ 2023-07-29 15:45 Steven-Russell 阅读(11) 评论(0) 推荐(0) 编辑