12 2021 档案
摘要:问题: 使用IDEA,当entity有非常多的字段,且很多字段样子都差不多的时候,需要能通过字段的注释来确定字段含义,以免出错 解决: Settings > General > Code Completion Show the documentation popup in 100ms
阅读全文
摘要:poi版本为3.16 Sheet sheet = workbook.getSheetAt(0); //设置根据表头自适应 sheet.autoSizeColumn(i); //解决中文表头自适应 sheet.setColumnWidth(i, sheet.getColumnWidth(i) * 12
阅读全文
摘要:Springboot-Tomcat配置解析 SpringBoot版本:2.2.2.RELEASE server: tomcat: max-connections: 10000 max-threads: 200 accept-count: 100 min-spare-threads: 10 conne
阅读全文
摘要:Jetcache获取cache对象 @Component public class JetcacheUtil implements ApplicationContextAware { private ApplicationContext applicationContext; private Spr
阅读全文
摘要:Maven依赖 <properties> <redisson.version>3.12.5</redisson.version> </properties> <!--redisson--> <dependency> <groupId>org.redisson</groupId> <artifactI
阅读全文
摘要:Maven依赖 jedis依赖 <dependency> <groupId>com.alicp.jetcache</groupId> <artifactId>jetcache-starter-redis</artifactId> <version>2.6.0</version> </dependen
阅读全文
摘要:https://jmetervn.com/2016/10/10/analyze-the-aggregate-report-in-jmeter/
阅读全文
摘要:修改jmeter.properties 修改sampleresult.default.encoding=UTF-8 重启
阅读全文