buguge - Keep it simple,stupid

知识就是力量,但更重要的,是运用知识的能力why buguge?

导航

上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 49 下一页

2023年4月11日 #

once do, do it well

摘要: CASE1:http工具类调用 昨天出现一个生产问题。我们的channel系统代码里,调用其中一个三方服务商的http接口时未设置超时时间。碰巧昨天出现一笔http请求持续数小时始终无响应,加之程序是单线程处理交易请求,就出现因为线程一直处于RUNNABLE状态而导致系统生产能力严重下降。 现在说这 阅读全文

posted @ 2023-04-11 21:50 buguge 阅读(92) 评论(0) 推荐(0) 编辑

2023年4月3日 #

解决javac注解处理器生成的方法,在编译时报错“找不到符号”

摘要: 最后的解决方案是修正对TreeMaker#Ident方法的使用,见如下AST代码变动 阅读全文

posted @ 2023-04-03 16:53 buguge 阅读(453) 评论(0) 推荐(0) 编辑

2023年3月28日 #

java reflection exception--can not access a member of class XXX with modifiers "private"

摘要: If you try to visit the value of an object's private field using reflection, such as Field#get or Field#set, you should call Field#setAccessible(true) ahead. 阅读全文

posted @ 2023-03-28 11:02 buguge 阅读(438) 评论(0) 推荐(0) 编辑

2023年3月24日 #

来说一个技术点,List作为参数数据丢失问题

摘要: 当引用对象作为方法参数时,我们在方法内部只可更改内存中的内容,但不可变更内存地址。 阅读全文

posted @ 2023-03-24 16:56 buguge 阅读(206) 评论(0) 推荐(0) 编辑

2023年3月21日 #

IDEA Rebuild项目错误:Information:java: java.lang.AssertionError: Value of x -1

摘要: 问题:java.lang.AssertionError: Value of x -1 模仿lombok工具,我的enumgen工具基本上写完了。 发布后准备投产时翻车了!公司的项目emax-rpcapi-list依赖enumgen后,IDEA Rebuild Project时,或者maven pac 阅读全文

posted @ 2023-03-21 13:52 buguge 阅读(194) 评论(0) 推荐(0) 编辑

2023年3月9日 #

利用Javac AST增强枚举功能

摘要: 先就lombok开始本文 lombok想必大家都在使用。 lombok我们怎么用?——两步 Step1:程序添加lombok工具包的依赖。 Step2:IDE安装lombok插件。 就是说,我们需要两个东西:lombok工具(包) & lombok插件 lombok实现原理 1)lombok工具包 阅读全文

posted @ 2023-03-09 13:39 buguge 阅读(128) 评论(0) 推荐(0) 编辑

2023年3月6日 #

hard-coded strings are a bad idea.

摘要: Hard-Coding is a terribly bad practice. 阅读全文

posted @ 2023-03-06 20:00 buguge 阅读(22) 评论(0) 推荐(0) 编辑

2023年3月2日 #

sonar代码扫描bug:Use try-with-resources or close this "FileInputStream" in a "finally" clause.

摘要: try-with-resouces相当于显式在finally块里调用close方法 阅读全文

posted @ 2023-03-02 14:00 buguge 阅读(841) 评论(0) 推荐(0) 编辑

2023年2月28日 #

IDEA/MAVEN编译错误:不兼容的类型,推断类型不符合上限

摘要: 这就是我们熟知的泛型类型推导问题。我们知道,Map 阅读全文

posted @ 2023-02-28 10:28 buguge 阅读(3431) 评论(0) 推荐(0) 编辑

2023年2月24日 #

如何实现把多个git仓库合并为一个,并保留提交记录?

摘要: 网上是有解决方案的,主要是借助git的命令,堪称niubility。我对git命令不熟悉,我用我的“土法”。 阅读全文

posted @ 2023-02-24 12:13 buguge 阅读(986) 评论(0) 推荐(0) 编辑

上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 49 下一页