2020年4月24日
摘要: https://blog.csdn.net/langyue919/article/details/80796369 阅读全文
posted @ 2020-04-24 16:32 秦水坡 阅读(119) 评论(0) 推荐(0) 编辑
  2020年1月8日
摘要: https://www.cnblogs.com/zouke1220/p/9723191.html 阅读全文
posted @ 2020-01-08 16:35 秦水坡 阅读(192) 评论(0) 推荐(0) 编辑
  2019年10月29日
摘要: https://www.jb51.net/article/162301.htm 阅读全文
posted @ 2019-10-29 16:08 秦水坡 阅读(481) 评论(0) 推荐(0) 编辑
  2019年9月16日
摘要: 4协议内容 41通信方式 协议采用的通信方式应符合JT/T 794中的相关规定,通信协议采用TCP或UDP,平台 作为服务器端,终端作为客户端。当数据通信链路异常时,终端可以采用SMS消息方式进 行通信。 4. 2数据类型 协议消息中使用的数据类型见表1: 表1数据类型 数据类型 描述及要求 BYT 阅读全文
posted @ 2019-09-16 15:16 秦水坡 阅读(13122) 评论(0) 推荐(2) 编辑
  2019年9月3日
摘要: package com.main; import java.util.LinkedList; public class NoQueue { public LinkedList<Node> getQueue(int n){ LinkedList<Node> queues = new LinkedList<Node>(); int m=0; boolean p = true; // 是否需要向上回溯 阅读全文
posted @ 2019-09-03 17:33 秦水坡 阅读(518) 评论(0) 推荐(0) 编辑
  2019年8月26日
摘要: 在JVM环境中解决 打开$JAVA_PATH/jre/lib/security/java.security这个文件,找到下面的内容: securerandom.source=file:/dev/urandom替换成 securerandom.source=file:/dev/./urandom —— 阅读全文
posted @ 2019-08-26 15:16 秦水坡 阅读(1101) 评论(0) 推荐(0) 编辑
  2019年5月14日
摘要: 参考自 https://blog.csdn.net/qq_28169825/article/details/88294663 兼容对比官网链接 https://www.rabbitmq.com/which-erlang.html 最新版本安装方案 https://faceghost.com/arti 阅读全文
posted @ 2019-05-14 18:58 秦水坡 阅读(1326) 评论(0) 推荐(0) 编辑
  2019年4月1日
摘要: 1、jdk代理 创建代理对象 classA a = Proxy.newProxyInstance(Factory.class.getClassLoader(), new Class[]{Superclass}, new ( ?classB implements classA ) handlerA i 阅读全文
posted @ 2019-04-01 11:06 秦水坡 阅读(165) 评论(0) 推荐(0) 编辑
  2019年3月11日
摘要: 开启event_scheduler指令: SET GLOBAL event_scheduler = ON;SET @@global.event_scheduler = ON;SET GLOBAL event_scheduler = 1;SET @@global.event_scheduler = 1 阅读全文
posted @ 2019-03-11 14:24 秦水坡 阅读(862) 评论(0) 推荐(0) 编辑
  2019年2月25日
摘要: 简单粗暴 恢复user表 1、先建立和之前user表一样的表结构。就是执行create table user .... ,执行完,数据库目录下就会建立user.ibd文件(当然还有其他的) 2、执行 alter table `user` discard tablespace ; 执行完之后,数据库目 阅读全文
posted @ 2019-02-25 16:22 秦水坡 阅读(2714) 评论(0) 推荐(0) 编辑