上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 26 下一页
摘要: 首先说明参考链接:https://mp.weixin.qq.com/s/W68JzNIoUpm9hyXinOzkMw 以下为个人观后总结。 初级理解: GET和POST的区别 1、get传送的参数长度有限制,post没有2、get"不安全",显示在url上,post没有3、get会被主动缓存,pos 阅读全文
posted @ 2021-07-19 10:51 背着泰山找黄河 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 问题代码如下: public static void main(String[] args) { Integer[] intArr={9,4,7,8,4,6}; //第一种创建ArrayList方式 List<Integer> intOldList = Arrays.asList(intArr); 阅读全文
posted @ 2021-07-14 22:03 背着泰山找黄河 阅读(598) 评论(0) 推荐(0) 编辑
摘要: 1.先安装node node -v 备注:如果出现相应的版本号,则说明安装成功。 2.安装淘宝镜像 npm install -g cnpm --registry=https://registry.npm.taobao.org 3.安装webpack npm install webpack@3.8.1 阅读全文
posted @ 2021-07-13 21:38 背着泰山找黄河 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 1、字符串:String host=”http://www.idawa.cn/”;请解析出www.idawa.cn 并统计a 出现的次数 public static void main(String[] args) { String host="http://www.idawa.cn/"; int 阅读全文
posted @ 2021-07-13 16:08 背着泰山找黄河 阅读(353) 评论(0) 推荐(0) 编辑
摘要: 官方文档用户连接 https://dubbo.apache.org/zh/docs/v2.7/user/examples/preflight-check/ dubbo管理控制台 启动dubbo监听程序后,可以检测控制服务,检测服务是否可行,控制服务的容错 生产设置(要先启动zookeeper,然后启 阅读全文
posted @ 2021-07-12 11:16 背着泰山找黄河 阅读(58) 评论(0) 推荐(0) 编辑
摘要: root密码破解 1、重启linux,在启动选择系统的界面,按“E”键。 1-1 按“e”键1-2 找到linux这一行,结尾是quit,在quit后边空格,添加console=tty0 rd.break1-3 ctrl + x 进入switch_root1-4 mount -o remount,r 阅读全文
posted @ 2021-07-11 20:25 背着泰山找黄河 阅读(72) 评论(0) 推荐(0) 编辑
摘要: zookeeper的安装教程:https://blog.csdn.net/qq_33316784/article/details/88563482 常用命令总结(linux运行.sh结尾的脚本,window运行.cmd结尾的脚本,一下均为linux运行的,直接将.sh改为.cmd即可): linux 阅读全文
posted @ 2021-07-08 18:25 背着泰山找黄河 阅读(452) 评论(0) 推荐(0) 编辑
摘要: JUC的AtomicReference ①.AtomicReference和AtomicInteger非常类似,不同之处就在于AtomicInteger是对整数的封装,而AtomicReference则对应普通的对象引用。也就是它可以保证你在修改对象引用时的线程安全性。 ②.AtomicRefere 阅读全文
posted @ 2021-07-08 12:06 背着泰山找黄河 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 开启新的大门 @Builder jdk1.8的新特性,不再需要额外的set方法,直接链式调用,更加方便简洁,更加优雅 @Builder public class Card { private int id; private String name; private boolean sex; } Ca 阅读全文
posted @ 2021-07-08 10:55 背着泰山找黄河 阅读(41) 评论(0) 推荐(0) 编辑
摘要: vm虚拟机提供三种链接方式 首先说一下仅主机模式(无法访问互联网): 当通过vmware workstation添加一个仅主机类型的虚拟交换机之后,会立刻在windows上创建一个虚拟网卡,连接到这个虚拟交换机。且仅主机类型的虚拟交换机上连接的所有虚拟机之间可以互相通信,但是这些连到仅主机上的虚拟机 阅读全文
posted @ 2021-04-18 12:29 背着泰山找黄河 阅读(107) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 26 下一页