上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 21 下一页
摘要: 阅读全文
posted @ 2020-05-05 21:08 ibrake 阅读(145) 评论(0) 推荐(0) 编辑
摘要: @Override public void run(String... args) throws Exception { ConcurrentHashMap<String, String> concurrentHashMap = new ConcurrentHashMap<>(); concurre 阅读全文
posted @ 2020-04-30 09:07 ibrake 阅读(360) 评论(0) 推荐(0) 编辑
摘要: 解释执行:即逐条将字节码翻译成机器码并执行,无需等待编译,非热点代码(80%) 即时执行:将一个方法中包含的所有字节码编译成机器码后再执行,实际运行速度更快,热点代码采用这个方法(20%)。 阅读全文
posted @ 2020-04-22 23:07 ibrake 阅读(965) 评论(0) 推荐(0) 编辑
摘要: max-http-header-size设置 server.max-http-header-size=999999999 //953m JVM参数配置 -Xms800m -Xmx800m 写一个rest api @RestController("action") public class HttpH 阅读全文
posted @ 2020-04-20 23:29 ibrake 阅读(3352) 评论(0) 推荐(1) 编辑
摘要: 一、全局修改 打开即可修改 二、针对当前项目修改 阅读全文
posted @ 2020-04-19 19:14 ibrake 阅读(1941) 评论(0) 推荐(1) 编辑
摘要: 一、Sublist导致OOM 代码 @Slf4j public class SubListDemo { public static void subListOOM() { List<List<Integer>> data = new ArrayList<>(); for (int i = 0; i 阅读全文
posted @ 2020-04-19 19:02 ibrake 阅读(1765) 评论(0) 推荐(0) 编辑
摘要: 坑1,用Array.asList转换基础类型数组 代码 @Slf4j public class ArrayAsListDemo { public static void intArrayToList() { int[] arr = {1, 2, 3}; List list = Arrays.asLi 阅读全文
posted @ 2020-04-19 16:34 ibrake 阅读(2565) 评论(0) 推荐(3) 编辑
摘要: 实体类 class Point { private int x; private int y; public int getX() { return x; } public void setX(int x) { this.x = x; } public int getY() { return y; 阅读全文
posted @ 2020-04-16 23:38 ibrake 阅读(312) 评论(0) 推荐(0) 编辑
摘要: 代码 @Slf4j public class StringCompareDemo { public static void compare() { String a = "1"; String b = "1"; log.info("\nString a = \"1\";\n" + "String b 阅读全文
posted @ 2020-04-16 23:00 ibrake 阅读(567) 评论(0) 推荐(0) 编辑
摘要: 实例级别的锁 实例代码 @Slf4j public class AddCompareDemo { private int a, b; public void add() { for (int i = 0; i < 10000; i++) { a++; b++; } } public void com 阅读全文
posted @ 2020-04-15 23:38 ibrake 阅读(359) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 21 下一页