摘要:
https://www.cnblogs.com/cndarren/p/15982972.html 由于是spring-web-5.2.15.RELEASE版本中出现了此问题,查看了Spring官网的版本信息,发现在spring-web-5.2.16.RELEASE版本中,针对此问题进行了修复 <de 阅读全文
摘要:
window系统 #include <windows.h> #include <winsock.h> #include <stdio.h> #include <stdlib.h> #include <stdint.h> #include <inttypes.h> #include <string.h 阅读全文
摘要:
printf转换说明 %a,%A 浮点数,十六进制数和p计数法 %c 单个字符 %d 十进制数 %e,%E 浮点数,e记数法 %f 浮点数,十进制记数法 %g,%G 根据值自动选择%f或%e。%e格式用指数小于-4或者大于或者等于精度时 %i 有符号十进制数 %o(小写字母o) 无符号八进制数 %p 阅读全文
摘要:
数据类型 类型 C JAVA int 4字节32位,%d。和平台有关系占用一个机器字长,16位机器是16位,32位机器是32位,64位机器是64位。 4字节32位,范围-2 147 483 648~2 147 483 647 超21亿有10位数。前缀0x或0X十六进制0xccff,前缀0八进制010 阅读全文
摘要:
【ElasticSearch】聚合Aggregation 关于text类型默认是禁止聚合/排序操作的,通过 fielddata=true 开启 PUT cms_search_inside_0d1a60ff-654d-4c1d-9d92-795ff0f9/_mapping { "properties" 阅读全文
摘要:
MySQL 8.0.19及更新版本,支持连续几次输入错误密码,锁定账户功能 FAILED_LOGIN_ATTEMPTS:代表尝试失败的次数 PASSWORD_LOCK_TIME:代表锁定的时间,单位天。 #指定策略和加密插件,连续输错2次后,锁定一天 CREATE USER `test`@`%` I 阅读全文
摘要:
主从配置 docker pull redis:6.0.3 Master配置修改 IP:192.168.0.100,端口:6378 bind 0.0.0.0 port 6378 # 密码验证 requirepass 123456 # 守护进程 daemonize yes # 关闭持久化 appendo 阅读全文
摘要:
1、Get https://registry-1.docker.io/v2/: dial tcp: lookup registry-1.docker.io on [::1]:53: read udp [::1]:55805->[::1]:53: read: connection refused vi 阅读全文
摘要:
【Nginx】http重定向https https://blog.csdn.net/liucy007/article/details/123070832 阅读全文
摘要:
1、替换IP str.replace(/http[s]?:\/\/.*\.[0-9]{1,4}(:[\w]+)?/g,'') 阅读全文