03 2021 档案
excel百万级数据导出
摘要:百万级数据导出 可尝试使用阿里的easyExcel插件。 使用教程:转自:https://zhuanlan.zhihu.com/p/98042288 pom依赖: <dependency><groupId>com.alibaba</groupId><artifactId>easyexcel</art 阅读全文
posted @ 2021-03-05 10:11 迷失中 阅读(758) 评论(0) 推荐(0)
SpringBoot项目pom文件第一行报错Unknow解决方案
摘要:<properties> <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version> </properties> 1,maven 插件jar包未下载完整,导致的IDE环境不兼容 2,插件版本不是maven版本,它们各有版本号。 3,pom文件 阅读全文
posted @ 2021-03-02 17:31 迷失中 阅读(308) 评论(0) 推荐(0)
eclipse 新建 spring Boot 项目
摘要:访问http://start.spring.io/ 阅读全文
posted @ 2021-03-02 15:31 迷失中 阅读(58) 评论(0) 推荐(0)
冗余数据按出现次数取值的解决方案
摘要:create table test1 (A int(5) , B int(5) ,C int(5) ,D int(5) , E int(5)); insert into test1 values(3,2,7,5,6); insert into test1 values(1,5,9,8,5); ins 阅读全文
posted @ 2021-03-01 10:56 迷失中 阅读(65) 评论(0) 推荐(0)
java易忽略的小问题
摘要:最近碰到的几个问题,记录一下: 1,Mybatis无法从数据据库取数: Dao层命名加前缀I,加@Mapper注解,对应的xml文件名同Dao文件,但去除I,扩展名为xml。如:IProjDao,Proj.xml 2, 运行的sql语句在Cosole中显示: log配置的root 为 debug c 阅读全文
posted @ 2021-03-01 10:50 迷失中 阅读(42) 评论(0) 推荐(0)