摘要:
实现excel 导出 一、需求 实现 excel 的导出 二、技术 选用 easypoi 官网: https://gitee.com/lemur/easypoi#http://doc.wupaas.com/docs/easypoi/easypoi-1c0u4mo8p4ro8 三、实现 1、前端 <e 阅读全文
摘要:
一、需求 后端是springboot,附件上传到服务器上,前端访问服务器上的附件,如:显示图片、视频、文件等 二、解决方法 springboot 中进行资源映射,根据路径将磁盘上的文件映射为资源返回到前端 代码如下: @Configuration public class WebConfig imp 阅读全文
摘要:
一、需求 postgresql 数据库,需要将某些表中的json字段的数据进行替换。 二、做法 思路:将json字段转为text,然后调用replace函数后,将text再转为json update tableName set columnName=regexp_replace(columnName 阅读全文
摘要:
在使用git命令查看操作记录等时,内容很多,想要输出内容快速结束 英文 Q 备注:通过英文Q快速结束 阅读全文
摘要:
转自:http://www.ruanyifeng.com/blog/2015/12/git-cheat-sheet.html 一般来说,日常使用只要记住下图6个命令,就可以了。但是熟练使用,恐怕要记住60~100个命令。 下面是我整理的常用 Git 命令清单。几个专用名词的译名如下。 Workspa 阅读全文
摘要:
解决向github上push报 error: failed to push some refs to 'xxxxx' 问题 1、问题 向github上push 代码时,报 error: failed to push some refs to 'xxxxx' 错误,如下: 2、原因分析 原因是远程仓库 阅读全文
摘要:
通过 maven 命令来查看 jar 包的引用关系 1、可以通过maven命令来查看jar包的引用关系 mvn dependency:tree -Dverbose -Dincludes=org.codehaus.jettison:jettison 1.1 dependency:tree 表示树状显示 阅读全文
摘要:
very常用的 idea 快捷键 1、查看接口实现方法 Ctrl+Alt+B 2、生成包裹代码 Ctrl+Alt+T 3、快速创建不存在的方法 Alt+T 阅读全文
摘要:
wrappedComponentRef={(form) => this.table = form} 阅读全文
摘要:
SpringBoot + Dubbo + zookeeper 搭建简单分布式服务 详细操作及源码见: https://github.com/BillyYangOne/dubbo-springboot 阅读全文