Loading

12 2021 档案

摘要:问题: 使用IDEA,当entity有非常多的字段,且很多字段样子都差不多的时候,需要能通过字段的注释来确定字段含义,以免出错 解决: Settings > General > Code Completion Show the documentation popup in 100ms 阅读全文
posted @ 2021-12-30 16:43 FynnWang 阅读(209) 评论(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 阅读(170) 评论(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 阅读(675) 评论(0) 推荐(0)
摘要:Jetcache获取cache对象 @Component public class JetcacheUtil implements ApplicationContextAware { private ApplicationContext applicationContext; private Spr 阅读全文
posted @ 2021-12-17 14:25 FynnWang 阅读(553) 评论(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 阅读(6854) 评论(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 阅读(1663) 评论(0) 推荐(0)
摘要:https://jmetervn.com/2016/10/10/analyze-the-aggregate-report-in-jmeter/ 阅读全文
posted @ 2021-12-09 22:38 FynnWang 阅读(32) 评论(0) 推荐(0)
摘要:修改jmeter.properties 修改sampleresult.default.encoding=UTF-8 重启 阅读全文
posted @ 2021-12-09 18:17 FynnWang 阅读(26) 评论(0) 推荐(0)