报错信息
yao_zhi_qiang
这个作者很懒,什么都没留下…
展开
-
MySQLSyntaxException:FUNCTION xxxxxxxx.JSON_EXTRACT does not exist
MySQLSyntaxException:FUNCTION xxxxxxxx.JSON_EXTRACT does not exist背景使用mysql 通过json数据查询原因mysql 版本太低json 操作需要最低的也是 5.7 以上是版本原创 2022-03-08 17:21:06 · 2253 阅读 · 0 评论 -
java.lang.UnsupportedOperationException: null异常处理
java.lang.UnsupportedOperationException异常处理private String[] otherUserFromArray = new String[]{“3”, “4”, “发放”};List<String> userFromList = Arrays.asList(otherUserFromArray);在使用 Arrays.asList()转化数组成为list的时候,生成了ArrayList, 表面上看是 java.util.ArrayList,实原创 2022-03-01 09:38:40 · 32708 阅读 · 8 评论 -
springcloud用(@ControllerAdvice)统一异常处理
自定义返回结果集自定义错误编码类public enum ErrorCodeConstants { ERROR(10000,"服务器异常"), ; //错误码id private int id; //错误码描述 private String descript; ErrorCodeConstants(int id, String descript) { this.id = id; this.descript =原创 2020-06-09 16:54:07 · 605 阅读 · 0 评论 -
报错java.sql.SQLException: null, message from server
报错java.sql.SQLException: null, message from server: “Host ‘xx.xx.xx.xx’ is blocked because of many connection errors; unblock with ‘mysqladmin flush-hosts’”1.原因:说明mysqld已经得到了大量(max_connect_errors)的主机’hostname’的在中途被中断了的连接请求。在 max_connect_errors次失败请求后,mys原创 2020-06-03 15:27:51 · 9713 阅读 · 0 评论