随笔分类 -  零散知识点

java零散知识点笔记
摘要:1:查看当前数据库最大链接数 show variables like '%max_connections%'; 2:修改最大链接数 set GLOBAL MAX_CONNECTIONS = 1000 以上就可以暂时解决“too many connections”的问题了 1:查询所有休眠链接 sel 阅读全文
posted @ 2020-04-17 14:14 走路很快的大师兄 阅读(283) 评论(0) 推荐(0)
摘要:@RequestParam 用来处理请求头Content-Type: 为 application/x-www-form-urlencoded编码的内容。(Http协议中,如果不指定Content-Type,则默认传递的参数就是application/x-www-form-urlencoded类型), 阅读全文
posted @ 2020-03-25 15:55 走路很快的大师兄