Loading

摘要: 网络 IO 在套接字接口的抽象下,网络 I/O 的本质其实是 Socket 的读取 Socket 在操作系统接口中被抽象为了数据流,而网络 I/O 就可以理解为是对流的操作 过程:两阶段 **等待数据从远程主机到达缓冲区:**从远程主机返回的数据会先存放到操作系统内核的缓冲区中 **将数据从缓冲区拷 阅读全文
posted @ 2022-01-07 16:42 FynnWang 阅读(173) 评论(0) 推荐(0)
摘要: gsonformat lombok free mybatis plugin mybatis log plugin maven helper mybatisX easycode search in repository visualGC Code graph Sequence Diagram Code 阅读全文
posted @ 2022-01-07 09:36 FynnWang 阅读(37) 评论(0) 推荐(0)
摘要: 问题1:如何将自身做为value 解决:Function.identity() //Function.identity()将IndexMetricsTrendRowVO作为value Map<String, IndexMetricsTrendRowVO> rowMap = trendRows.str 阅读全文
posted @ 2022-01-06 09:55 FynnWang 阅读(265) 评论(0) 推荐(0)
摘要: 问题: 使用IDEA,当entity有非常多的字段,且很多字段样子都差不多的时候,需要能通过字段的注释来确定字段含义,以免出错 解决: Settings > General > Code Completion Show the documentation popup in 100ms 阅读全文
posted @ 2021-12-30 16:43 FynnWang 阅读(196) 评论(0) 推荐(0)
摘要: poi版本为3.16 Sheet sheet = workbook.getSheetAt(0); //设置根据表头自适应 sheet.autoSizeColumn(i); //解决中文表头自适应 sheet.setColumnWidth(i, sheet.getColumnWidth(i) * 12 阅读全文
posted @ 2021-12-27 20:58 FynnWang 阅读(157) 评论(0) 推荐(0)
摘要: Springboot-Tomcat配置解析 SpringBoot版本:2.2.2.RELEASE server: tomcat: max-connections: 10000 max-threads: 200 accept-count: 100 min-spare-threads: 10 conne 阅读全文
posted @ 2021-12-19 10:58 FynnWang 阅读(644) 评论(0) 推荐(0)
摘要: Jetcache获取cache对象 @Component public class JetcacheUtil implements ApplicationContextAware { private ApplicationContext applicationContext; private Spr 阅读全文
posted @ 2021-12-17 14:25 FynnWang 阅读(546) 评论(0) 推荐(0)
摘要: Maven依赖 <properties> <redisson.version>3.12.5</redisson.version> </properties> <!--redisson--> <dependency> <groupId>org.redisson</groupId> <artifactI 阅读全文
posted @ 2021-12-13 14:44 FynnWang 阅读(6673) 评论(0) 推荐(0)
摘要: Maven依赖 jedis依赖 <dependency> <groupId>com.alicp.jetcache</groupId> <artifactId>jetcache-starter-redis</artifactId> <version>2.6.0</version> </dependen 阅读全文
posted @ 2021-12-13 13:50 FynnWang 阅读(1605) 评论(0) 推荐(0)
摘要: https://jmetervn.com/2016/10/10/analyze-the-aggregate-report-in-jmeter/ 阅读全文
posted @ 2021-12-09 22:38 FynnWang 阅读(20) 评论(0) 推荐(0)