上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 48 下一页
  2024年1月15日
摘要: 如果redis没有设置expire,他是否默认永不过期?默认是的 通过EXPIRE key seconds 命令来设置数据的过期时间。返回1表明设置成功,返回0表明key不存在或者不能成功设置过期时间。在key上设置了过期时间后key将在指定的秒数后被自动删除。被指定了过期时间的key在Redis中 阅读全文
posted @ 2024-01-15 18:57 oktokeep 阅读(250) 评论(0) 推荐(0) 编辑
摘要: Java中的ThreadLocal和 InheritableThreadLocal package com.example.core.mydemo.java; /** * output * Thread-0 ThreadLocal value :null * Thread-0 Inheritable 阅读全文
posted @ 2024-01-15 18:55 oktokeep 阅读(10) 评论(0) 推荐(0) 编辑
摘要: Idea SpringBoot 子模块 加载不到该子模块根目录config下面的配置文件 import org.mybatis.spring.annotation.MapperScan; import org.springframework.boot.SpringApplication; impor 阅读全文
posted @ 2024-01-15 18:54 oktokeep 阅读(361) 评论(0) 推荐(0) 编辑
摘要: springboot增加@EnableAsync注解,否则方法中的@Async注解没有生效。 @EnableFeignClients(basePackages = {"com.test", "com.test.order"})@EnableAsync@EnableEurekaClient@Sprin 阅读全文
posted @ 2024-01-15 18:46 oktokeep 阅读(22) 评论(0) 推荐(0) 编辑
  2024年1月14日
摘要: 1.类名重复了:项目和子模块中存在类名相同的java类,启动项目的时候会报错。Caused by: org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean 阅读全文
posted @ 2024-01-14 20:00 oktokeep 阅读(38) 评论(0) 推荐(0) 编辑
  2023年12月25日
摘要: postman打开白屏 1.打开高级系统设置;2.在“高级”选项卡中,单击“环境变量”;3.添加一个新的系统变量:POSTMAN_DISABLE_GPU=true4.关闭Postman并重新打开(或者关闭电脑重新启动) 阅读全文
posted @ 2023-12-25 19:09 oktokeep 阅读(802) 评论(0) 推荐(0) 编辑
摘要: Excel poi 设置单元格格式 发现不可读内容 已修复的记录: /xl/worksheets/sheet1.xml 部分的问题(巨坑) 1.先设置值,后设置样式。 正确的是:先设置样式,后设置值。2.对象A的样式应用于对象B的样式,导致报错。 正确的是:对象A应用对象A的样式,对象B应用对象B的 阅读全文
posted @ 2023-12-25 19:08 oktokeep 阅读(694) 评论(1) 推荐(0) 编辑
摘要: 两个Excel表格核对 excel表格中# DIV/0 核对两个表格的差异,合并运算VS高级筛选 1.两列顺序一样的数据核对 方法1:加一个辅助列,=B2=C2 结果为FALSE的就是不相同的 方法2:两列数据,按CTRL+\ 然后直接标记颜色就把不一样的找出来 2.两列顺序不一致的情况 方法1:用 阅读全文
posted @ 2023-12-25 19:08 oktokeep 阅读(118) 评论(1) 推荐(0) 编辑
  2023年12月24日
摘要: @ConfigurationProperties(prefix = “xx.xx.xx“) 从配置文件中取值赋给类的属性 @ConfigurationProperties(prefix = “xx.xx.xx”)该注解的作用是从配置文件中取值赋给类的属性,当然也可以为方法的变量赋值 /** * 服务 阅读全文
posted @ 2023-12-24 18:52 oktokeep 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 计算两个时间相隔的小时数 import java.time.Duration; import java.time.LocalDateTime; public class Hello { public static void main(String[] args) { /** * now=2023-1 阅读全文
posted @ 2023-12-24 18:51 oktokeep 阅读(208) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 48 下一页