记它一笔
本分栏记录在工作中遇到的零碎知识点
Demo_Null
学渣的自我修养
展开
-
还原数据库报:2006 - MySQL server has gone away [ERR]
[ERR] 2006 - MySQL server has gone away原创 2020-11-30 09:11:10 · 1070 阅读 · 1 评论 -
SpringBoot 报 No operations allowed after connection closed 异常解决办法
SpringBoot 使用 hikari、druid 数据库连接池报 No operations allowed after connection closed 异常解决办法原创 2020-08-10 10:28:25 · 9665 阅读 · 0 评论 -
SpringBoot + Vue 前后端分离项目下载视频文件踩坑记录
☞ 背景 项目服务端用的是 SpringBoot + SpringCloud + SpringDataJPA,前端用的是 Vue,有一个功能需要下载从监控中截取的视频(mp4),该视频由另一程序截取好放在某一目录下,使用 nginx 进行访问跳转,例如:视频:http://xx.xx.xx.xx:81/videoPath、web: http://xx.xx.xx.xx。☞ 坑一:a 标签let link = document.createElement('a')link.setAttribut原创 2020-06-18 18:25:27 · 1580 阅读 · 7 评论 -
翻车!居然在这里翻车了!!!
首先看代码一:@FunctionalInterfacepublic interface MyFunctionInterface { public abstract String myMethod();}public class Demo { private static void show(int i, MyFunctionInterface myFunctionInterface) { if (i == 1) { System.out.p.原创 2020-05-18 01:56:36 · 355 阅读 · 0 评论