- 博客(32)
- 收藏
- 关注
原创 Java 读取 Excel 报错
Caused by: java.io.IOException: Zip bomb detected! The file would exceed the max. ratio of compressed file size to the size of the expanded data.This may indicate that the file is used to inflate memory usage and thus could pose a security risk.You can a
2023-06-10 18:40:06 1572
原创 二 Mysql 用户管理
Mysql用户管理,查看用户,创建用户,删除用户,修改密码,锁定用户,忘记密码重置。Mysql 使用 user + host 唯一标识用户,也就是说 ccc@‘%’ 和 ccc@‘192.168.59.%’ 不是同一个用户。host代表允许登录的ip,'%'表示所有ip都允许登录,'192.168.59.%'表示只有 192.168.59.1 ~ 192.168.59.255 的ip才能登录。不建议修改用户名,host(可以删除后新建)删除用户后权限也会丢失
2023-06-10 18:14:30 231
原创 一 mysql下载安装启动
mysql下载安装启动,mysql8下载安装启动。关闭防火墙、开放3306端口。安装 mysql 8.0.33。忘记mysql登录密码
2023-06-04 15:09:56 747
原创 Spring 服务动态修改日志级别
Spring 服务动态修改日志级别:测试服务器需要修改日志级别,打印debug日志排查问题(默认日志及级别为info)
2023-05-20 21:16:45 574
原创 Mybatis初始化(全局配置文件解析)
读取解析mybatis-config.xml配置文件里面的各种标签,并创建一个 Configuration 对象,把配置文件中的内容存到 Configuration 对象中(可以看作mybatis工作所需的上下文,存储mybatis工作时所需要的信息),返回SqlSessionFactory(实际上返回的是其子类DefaultSqlSessionFactory对象),Configuration 对象是DefaultSqlSessionFactory的属性。
2023-05-07 15:50:40 238
原创 Java 线程池
下面是 ThreadPoolExecutor 其中一个构造方法,可以看到 ThreadPoolExecutor 一共有7个参数:corePoolSize:核心线程数,默认创建出来后不会被回收,可以通过调用allowCoreThreadTimeOut(true)方法允许回收maximumPoolSize:最大线程数keepAliveTime:当线程数大于核心线程数时,多余的线程等待任务的时间,超过时间没有分配到任务被回收unit:传入的 keepAliveTime 的单位。
2023-01-02 16:43:46 278
原创 SpringCache-Redis 解决穿透、雪崩、击穿问题
SpringCache 解决穿透、雪崩、击穿问题 application.yml 中将 spring.cache.redis.cache-null-values 设为 true spring.cache.redis.time-to-live 设置过期时间@Cacheable 指定 sync 为 true,默认为 false
2022-11-07 21:55:30 631
原创 服务启动报错 RedisCommandExecutionException: READONLY You can‘t write against a read only replica.
服务启动报错 RedisCommandExecutionException: READONLY You can't write against a read only replica.org.springframework.data.redis.RedisSystemException: Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: READONLY You can't
2022-10-29 00:01:40 15264
原创 ERROR 26884 — [nio-8080-exec-2] i.r.common.exception.RRExceptionHandler
When allowCredentials is true, allowedOrigins cannot contain the special value “*” since that cannot be set on the “Access-Control-Allow-Origin” response header. To allow credentials to a set of origins, list them explicitly or consider using “allowedOrigi
2022-10-05 17:05:20 1133
原创 启动服务报错 java.lang.NoClassDefFoundError: org/springframework/boot/logging/DeferredLogFactory
项目启动报错 java.lang.NoClassDefFoundError: org/springframework/boot/logging/DeferredLogFactory:创建项目后更改了springboot 版本,从 2.7.4 改为 2.2.4.RELEASE,导致 boot 与 cloud 版本不兼容,查看官网改成对应版本即可,
2022-10-03 00:40:25 3242 1
原创 Android 关闭数据业务
Android S 关闭数据业务流程 Android 12 关闭数据业务流程 setDataEnabled(false)
2022-08-19 09:08:22 677
原创 执行git push时提示 nothing to commit, working tree clean
已经进行git add, git commit,执行git push时提示 nothing to commit, working tree clean,查看远程仓库,更改也没有push上去
2022-08-14 22:01:10 1554
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人