摘要:
https://blog.csdn.net/langyue919/article/details/80796369 阅读全文
摘要:
https://www.cnblogs.com/zouke1220/p/9723191.html 阅读全文
摘要:
https://www.jb51.net/article/162301.htm 阅读全文
摘要:
4协议内容 41通信方式 协议采用的通信方式应符合JT/T 794中的相关规定,通信协议采用TCP或UDP,平台 作为服务器端,终端作为客户端。当数据通信链路异常时,终端可以采用SMS消息方式进 行通信。 4. 2数据类型 协议消息中使用的数据类型见表1: 表1数据类型 数据类型 描述及要求 BYT 阅读全文
摘要:
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; // 是否需要向上回溯 阅读全文
摘要:
在JVM环境中解决 打开$JAVA_PATH/jre/lib/security/java.security这个文件,找到下面的内容: securerandom.source=file:/dev/urandom替换成 securerandom.source=file:/dev/./urandom —— 阅读全文
摘要:
参考自 https://blog.csdn.net/qq_28169825/article/details/88294663 兼容对比官网链接 https://www.rabbitmq.com/which-erlang.html 最新版本安装方案 https://faceghost.com/arti 阅读全文
摘要:
1、jdk代理 创建代理对象 classA a = Proxy.newProxyInstance(Factory.class.getClassLoader(), new Class[]{Superclass}, new ( ?classB implements classA ) handlerA i 阅读全文
摘要:
开启event_scheduler指令: SET GLOBAL event_scheduler = ON;SET @@global.event_scheduler = ON;SET GLOBAL event_scheduler = 1;SET @@global.event_scheduler = 1 阅读全文
摘要:
简单粗暴 恢复user表 1、先建立和之前user表一样的表结构。就是执行create table user .... ,执行完,数据库目录下就会建立user.ibd文件(当然还有其他的) 2、执行 alter table `user` discard tablespace ; 执行完之后,数据库目 阅读全文