摘要: https://blog.csdn.net/liuxiaoniudechuntian/article/details/109830258 https://blog.csdn.net/weixin_42579969/article/details/129452816 https://blog.csdn 阅读全文
posted @ 2024-11-18 22:01 黄河大道东 阅读(2) 评论(0) 推荐(0) 编辑
摘要: package org.ailun; import io.minio.*; import io.minio.messages.*; import java.util.List; /** * @version 1.0 * @since : JDK 11 */ public class Test { p 阅读全文
posted @ 2024-09-25 09:32 黄河大道东 阅读(14) 评论(0) 推荐(0) 编辑
摘要: CustomHttpServletRequestWrapper.java:包装请求,缓存请求体数据,重写读取数据方法 import javax.servlet.ReadListener; import javax.servlet.ServletInputStream; import javax.se 阅读全文
posted @ 2024-09-19 11:02 黄河大道东 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 对单个容器生效 docker run --log-opt max-size=10m --log-opt max-file=3 全局容器生效 vim /etc/docker/daemon.json { "log-driver": "json-file", "log-opts": { "max-size 阅读全文
posted @ 2024-09-18 11:51 黄河大道东 阅读(11) 评论(0) 推荐(0) 编辑
摘要: import java.util.concurrent.TimeUnit; import java.util.concurrent.atomic.AtomicInteger; /** * 限流器 */ public class RateLimiter { /** * 时间窗口,单位毫秒 */ pri 阅读全文
posted @ 2024-09-14 10:54 黄河大道东 阅读(2) 评论(0) 推荐(0) 编辑
摘要: ![image](https://img2024.cnblogs.com/blog/2153794/202409/2153794-20240913145136903-1763999407.png) 阅读全文
posted @ 2024-09-13 14:52 黄河大道东 阅读(4) 评论(0) 推荐(0) 编辑
摘要: docker拉取镜像报错:error pulling : download failed after attempts=6: dial tcp 69.162.134.178:443: i/o time 1、vim /etc/resolv.conf nameserver 8.8.8.8 nameser 阅读全文
posted @ 2024-08-23 10:54 黄河大道东 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 定时工具 import cn.hutool.cron.CronUtil; import cn.hutool.cron.task.Task; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annot 阅读全文
posted @ 2024-02-19 14:07 黄河大道东 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 原因是mysql连接数过多 解决方案一: 1、linux登录mysql: mysql -u root -p; 2、查看mysql允许的最大连接数 show variables like '%max_connections%'; 3、查看这次mysql服务启动到现在,同一时刻最多mysql有多少连接 阅读全文
posted @ 2023-12-21 13:44 黄河大道东 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 目录UML 类图类图关系概述1、泛化关系(generalization)2、实现关系(realization)3、依赖关系(dependent)4、关联关系(association)4.1、一对一的关系4.2、单向的一对多4.3、单向多对一4.4、双向一对多、多对一4.5、单向多对多5、聚合关系(a 阅读全文
posted @ 2023-12-19 10:49 黄河大道东 阅读(45) 评论(0) 推荐(0) 编辑