
异常总结小合集
无论在安装软件过程中还是代码开发过程中,异常无时无刻不伴随着我们,本专栏将博主遇到的异常合集整理起来,以便日后的查看与使用。
小鲍侃java
CSDN博客专家,华为签约作者,全网粉丝10w,阅读量100w+。现任企业架构师,主要分享和讲解毕设,java入门与晋级架构师的技巧与知识。
展开
-
PowerDesigner:反向 PostgreSQL SQLSTATE =22003和SQLSTATE = 42703
SQLSTATE = 42703原因是因为版本问题 postgresql语法发生变化 脚本也相应发生变化1.进入编辑窗口2.修改将带有adsrc语句删除 改为''SQLSTATE =220031.进入编辑窗口2.修改将c.attnotnull 修改为 CAST(NULLIF(c.attnotnull,false) as VARCHAR(1))x.indisprimary修改为CAST(NULLIF(x.indisprimary,false) as原创 2021-02-24 08:50:22 · 1972 阅读 · 14 评论 -
oauth2:org.springframework.security.oauth2.common.exceptions.RedirectMismatchException: Redirect URI
输入的跳转路径和oauth_client_details表中的不一致原创 2021-03-05 14:13:50 · 999 阅读 · 5 评论 -
rocket:The broker does not support consumer to filter message by SQL92
broker的配置文件中需要指定对filter的支持:enablePropertyFilter = true原创 2021-01-28 14:41:01 · 495 阅读 · 1 评论 -
mybatis:java.lang.NoClassDefFoundError: org/apache/ibatis/annotations/Mapper
更改mybatis包版本 <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.2.7</version> </dependency> <dependenc原创 2021-01-28 14:39:41 · 1168 阅读 · 1 评论 -
mybatis:Exception in thread “main“ org.springframework.jdbc.UncategorizedSQLException
带有map的修改插入接口的jdbctype原创 2021-01-28 14:38:33 · 761 阅读 · 1 评论 -
nginx:413错误
原因是前台文件太大,nginx不通过。修改Nginx就可以了在http中加入client_max_body_size 8M;client_body_buffer_size 128k;fastcgi_intercept_errors on;原创 2018-11-07 08:49:14 · 1771 阅读 · 1 评论 -
jeecg:Node Sass could not find a binding for your current environment: Windows 64-bit with Node.js
Node Sass could not find a binding for your current environment: Windows 64-bit with Node.js 12.xFound bindings for the following environments: - Windows 64-bit with Node.js 12.x安装jeecg前段框...原创 2020-03-06 22:03:46 · 1489 阅读 · 3 评论 -
navicat:navicat is not allowed to connect
转于:https://blog.csdn.net/wohiusdashi/article/details/81174302今天使用本地连接远程Mysql,一直报java.sql.SQLException:null,message from server:"Host '' is not allowed to connect.这个错误原因是:远程服务器不允许你的java程序访问它的数...原创 2019-04-28 17:26:11 · 1661 阅读 · 1 评论 -
mysql:Access denied for user ‘root‘@‘localhost‘ (using password: NO)
vim /etc/my.cnf 加入skip-grant-tables重启服务service mysqld restart修改密码SET PASSWORD = PASSWORD('123456');ALTER USER 'root'@'localhost' PASSWORD EXPIRE NEVER;FLUSH PRIVILEGES; 然后把这个 etc下的 my.cnf 文件 改回去。...原创 2020-10-30 10:56:24 · 474 阅读 · 1 评论 -
postgresql:org.postgresql.util.PSQLException: ERROR: syntax error at or near “$8“
原因是sql中多写了 "(",")","{","}" 等符号原创 2020-12-11 16:39:30 · 12372 阅读 · 1 评论 -
mybatis:There is no getter for property named ‘REGION‘ in ‘xxxEntity‘
可能原因不是缺少get方式是entity中字段的大小写要与mapper.xml中的字段对应上原创 2020-12-11 10:30:23 · 477 阅读 · 0 评论 -
Eureka:com.netflix.discovery.TimedSupervisorTask - task supervisor timed out
com.netflix.discovery.TimedSupervisorTask - task supervisor timed out原创 2020-05-31 10:08:49 · 22744 阅读 · 1 评论 -
redis:java.lang.NoClassDefFoundError: org/apache/commons/pool2/impl/GenericObjectPoolConfig异常
<dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-pool2</artifactId> </dependency> <depend...原创 2020-04-22 09:00:40 · 15656 阅读 · 3 评论