图表自动适用屏幕
摘要:随着屏幕窗口的变动重新加载图表 方案一: window.addEventListener("resize",function(){ myChart.resize(); }) 方案二: $(window).resize(function () { myChart.resize(); }).resize
阅读全文
记录程序耗时
摘要:说明:用 spring 自身提供的 stopWatch API @Test public void test01() throws InterruptedException { StopWatch watch = new StopWatch(); watch.start("任务一"); Thread
阅读全文
对list集合进行分页
摘要:方法一: @Test public void test02(){ List<Integer> list = Arrays.asList(1, 2, 3, 4, 5, 6, 7, 8, 9); int totalPage = 0; int pageSize = 5; int size = list.s
阅读全文
数据库文档生成工具(screw)快速生成数据库文档
摘要:maven插件形式: 1》pom中添加如下配置 <build> <plugins> <plugin> <groupId>cn.smallbun.screw</groupId> <artifactId>screw-maven-plugin</artifactId> <version>1.0.5</ve
阅读全文