摘要:
可能原因:在@FeignClient注解类的方法上打断点了,可能和idea的检查断点机制有关。 阅读全文
摘要:
一、问题 ping协议的覆盖率字段一直更新有误。 二、原因 ArangoDB views中的属性commitIntervalMsec默认为1000毫秒,该属性限制了提交视图数据存储更新后必须要等待指定毫秒数才能查询文档,否则数据就是不可见的。 snmp、ping、rping、telemetry四种协 阅读全文
摘要:
## UTC转时间戳,转指定格式 2023-06-29T03:15:48.000Z转为2023-06-29 11:15:48 ``` SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); SimpleDateForma 阅读全文
摘要:
参考: https://zhuanlan.zhihu.com/p/545113372 https://www.bilibili.com/read/cv18157852 Mysql数据库引擎默认使用InnoDB,使用B+树数据结构。 一个表只能有一个聚簇索引,但可以有多个非聚簇索引,也就是多个索引目录 阅读全文
摘要:
Git命令游戏教程网站:https://learngitbranching.js.org/?locale=zh_CN ### 日常使用 ![](https://img2022.cnblogs.com/blog/1491599/202203/1491599-20220320181322946-1610 阅读全文
摘要:
时间戳与格式日期时间转换 1.使用LocalDateTime:线程安全 public void testLocalDateTime() { long time = new Date().getTime(); DateTimeFormatter dtf = DateTimeFormatter.ofPa 阅读全文
摘要:
源自:https://docs.spring.io/spring-framework/docs/5.2.12.RELEASE/spring-framework-reference/core.html#beans-setter-injection Dependencies Injection Spri 阅读全文
摘要:
catch中throw会中止当前程序 e.printStackTrace()只会打印问题,不会中断程序。 阅读全文
摘要:
List转为String数组 List对象.toArray(new String[0]) private String[] getStringArray() { return new String[]{"one", "two", "three"}; } @Test public void testC 阅读全文