上一页 1 2 3 4 5 6 ··· 14 下一页
摘要: 1.基本环境 1.1 jdk 1.2 maven 1.配置MAVEN_HOME环境变量 2.配置setting.xml,指定本地仓库和使用的远程仓库 <!-- profile--> <profile> <id>JDK-1.8</id> <activation> <activeByDefault>tr 阅读全文
posted @ 2022-04-30 10:42 Fake_coder 阅读(57) 评论(0) 推荐(0)
摘要: Servlet 规范 https://www.cnblogs.com/yumu77/p/13888346.html#_label0**** tomcat 阅读全文
posted @ 2022-04-19 16:14 Fake_coder 阅读(16) 评论(0) 推荐(0)
摘要: awk 工作流 1.读 2.执行 3.重复 程序结构 1.BEGIN block 2.记录处理结果 3.END block 语法 Usage: awk [POSIX or GNU style options] -f progfile [--] file ... Usage: awk [POSIX o 阅读全文
posted @ 2022-04-13 17:38 Fake_coder 阅读(66) 评论(0) 推荐(0)
摘要: Kubernetes权威指南 1 Kubernetes 入门 1.4 Kubernetes基本概念和术语 1.4.1 Master Master是集群控制节点,运行着一组关键进程 Kubernates API Server:提供HTTP Rest接口的关键服务进程 Kubernates Contro 阅读全文
posted @ 2022-04-10 16:42 Fake_coder 阅读(111) 评论(0) 推荐(0)
摘要: java project loom http://cr.openjdk.java.net/~rpressler/loom/loom/sol1_part1.html 阅读全文
posted @ 2022-03-10 09:55 Fake_coder 阅读(42) 评论(0) 推荐(0)
摘要: 代理 所谓代理就是给一个不具有某个功能的类增加某个目标类的功能,如下,被代理类LogHandler 增加一个Calculator 的add方法 //接口 package gn.k48.proxy; public interface Calculator { int add(int a, int b) 阅读全文
posted @ 2022-02-13 20:01 Fake_coder 阅读(517) 评论(0) 推荐(0)
摘要: 复杂对象与缓存一次交互还是多次交互比较好? 阅读全文
posted @ 2022-02-11 10:06 Fake_coder 阅读(13) 评论(0) 推荐(0)
摘要: 配置管理接口 https://www.jianshu.com/p/be6c818fe6ff 配置热加载 https://www.cnblogs.com/rinack/p/14039143.html 阅读全文
posted @ 2021-12-02 20:17 Fake_coder 阅读(25) 评论(0) 推荐(0)
摘要: TCP KEEP-ALIVE https://segmentfault.com/a/1190000021057175 阅读全文
posted @ 2021-11-23 11:41 Fake_coder 阅读(27) 评论(0) 推荐(0)
摘要: L5_最长回文子串 //动态规划 public static String longestPalindrome1(String s) { if (s.length() < 2) { return s; } int maxLen = 0, begin = 0; boolean[][] dp = new 阅读全文
posted @ 2021-11-10 09:24 Fake_coder 阅读(67) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 14 下一页