摘要:
注解式+手动式热更新本地缓存 使用环境为spring+maven+lombok+log+caffeine项目 github地址:https://github.com/HumorChen/LocalCache /** * @author: humorchen * date: 2023/11/21 * 阅读全文
摘要:
引入maven依赖 caffeine、hutool、lombok <dependency> <groupId>com.github.ben-manes.caffeine</groupId> <artifactId>caffeine</artifactId> <version>2.8.0</versi 阅读全文
摘要:
单个字段解决办法 @JsonDeserialize(using = LocalDateTimeDeserializer.class) @JsonSerialize(using = LocalDateTimeSerializer.class) LocalDateTime createTime; 全局解 阅读全文
摘要:
报错信息 fatal: could not read Username for ‘https://codehub-cn-south-1.devcloud.huaweicloud.com’: No such file or directory 18:18:39.885: [recovery_patte 阅读全文
摘要:
测试环境及相关必要知识 测试环境为mysql 8 版本 间隙锁(Gap Lock):用于锁定索引范围之间的间隙,防止其他事务在此间隙中插入新记录。间隙锁主要用于防止幻读问题。 在可重复读的隔离级别下默认打开该锁机制,解决幻读问题,也可手动修改配置文件关闭该锁机制,该锁机制为innodb自动决定间隙范 阅读全文
摘要:
示范数据表 age具有index普通索引 在mysql数据库里的information_schema.INNODB_TRX表中存储有innodb的所有事务,我们可以查看该表来查看正在进行的事务 现在我开启一个事务,执行第1、2行SQL,启动事务并持有id=3的行锁 刷新事务表可以看到这个事务 我们可 阅读全文
摘要:
节点日志 报错信息如下 Error: A JNI error has occurred, please check your installation and try again Exception in thread “main” java.lang.UnsupportedClassVersion 阅读全文
摘要:
/var/lib/jenkins/.ssh/known_hosts [SSH] No Known Hosts file was found at /var/lib/jenkins/.ssh/known_hosts. Please ensure one is created at this path 阅读全文
摘要:
域名解析被干扰的有点严重,直接使用谷歌dns服务器来解析ip 第一、永久修改DNS方法 1、修改 /etc/systemd/resolved.conf 文件 vi /etc/systemd/resolved.conf 这里我们可以看到这些参数: # 指定 DNS 服务器,以空白分隔,支持 IPv4 阅读全文
摘要:
下载系统 第一步下载自己路由器型号的系统固件,https://openwrt.org/toh/views/toh_fwdownload 直接在页面搜索自己路由器品牌找到区域再找到自己的型号对应的,然后选第一个链接是稳定版系统固件,下载后改名为openwrt.bin 固件备用 下载程序 github地 阅读全文