摘要: 来源:内网保留地址 阅读全文
posted @ 2023-07-12 14:02 码界小小学生 阅读(8) 评论(0) 推荐(0) 编辑
摘要: SELECT 0+'123.00'; SELECT 0+'123.0qwe'; SELECT 0+'qwe1'; SELECT 0+null; SELECT '123.00'/4; SELECT '123.0qwe'/4; SELECT 'qwe1'/4; SELECT '1qwe'/4; SELE 阅读全文
posted @ 2023-06-21 15:04 码界小小学生 阅读(1) 评论(0) 推荐(0) 编辑
摘要: netty rpcrpc不通过http, 只是使用了tcphttp应用层tcp传输层 http不同产品或者不同语言之间最佳解决浪费传输的宽带 rpc为什么只用tcp就可以实现,说白了,http就是编码解码用的,我用prc可以自定义编码解码器,不需要通过http实现rpc个人理解,适用于客户端和服务端 阅读全文
posted @ 2023-06-16 21:03 码界小小学生 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 来源: 身份证校验码:计算方法 阅读全文
posted @ 2023-06-16 17:51 码界小小学生 阅读(69) 评论(0) 推荐(0) 编辑
摘要: public interface CBlockingQueue<E> { boolean add(E e); E take(); } import java.util.concurrent.Delayed; import java.util.concurrent.FutureTask; import 阅读全文
posted @ 2023-06-15 14:49 码界小小学生 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 来源: 开发规约的道与术 阅读全文
posted @ 2023-06-14 16:41 码界小小学生 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 参考: 高并发编程之ScheduledThreadPoolExecutor讲解 import java.text.SimpleDateFormat; import java.util.Date; import java.util.concurrent.ScheduledFuture; import 阅读全文
posted @ 2023-06-14 15:03 码界小小学生 阅读(29) 评论(0) 推荐(0) 编辑
摘要: java.util.concurrent.ScheduledThreadPoolExecutor public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, Tim 阅读全文
posted @ 2023-06-14 14:54 码界小小学生 阅读(1) 评论(0) 推荐(0) 编辑
摘要: RUNNING: Accept new tasks and process queued tasks SHUTDOWN: Don't accept new tasks, but process queued tasks STOP: Don't accept new tasks, don't proc 阅读全文
posted @ 2023-06-14 09:59 码界小小学生 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 来源: RSA加密、AES加密 阅读全文
posted @ 2023-06-13 17:36 码界小小学生 阅读(24) 评论(0) 推荐(0) 编辑