错误处理
文章平均质量分 52
起个名字都这么男
Stay hungry,Stay foolish!
展开
-
{“error“:“incorrect region, please use up-z1.qiniup.com“}
接入七牛云对象存储注册七牛云账号,点右上角的密钥管理,key和secret需要复制到application.properties中。因为用到对象云存储,放一些静态资源,所以还需要实名认证。个人实名认证后,可以创建存储空间了,这个空间的名字也就是配置文件中对应的bucket,然后就有一个免费试用30天的外链域名。配置文件这时我上传文件的时候没有反应,发现返回状态是400,{"error":"incorrect region, please use up-z1.qiniup.com"},然后在七牛云原创 2021-11-28 21:02:34 · 3872 阅读 · 0 评论 -
Redis RDB持久化失败报错解决方案
问题描述之前搭建的项目中使用到redis缓存生成的验证码,但是今天进入网站后,验证码没了。报了一个错Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk. Commands that ma原创 2021-08-29 17:19:43 · 3655 阅读 · 1 评论 -
SpringBoot接入支付宝沙箱返回支付二维码
支付宝开放平台扫码登录支付宝开放平台沙箱环境沙箱环境介绍沙箱控制台应用网关:该地址用于接收开放平台的异步通知。目前沙箱环境不需要配置此参数;授权回调地址;第三方应用授权或获取用户信息中用于接收授权回调信息的地址。使用相关产品时需进行配置:第三方应用授权:授权 url 中的 redirect_uri 必须与此值相同。获取用户信息:授权 url 中的 redirect_uri 的域名必须与此值相同(例如:授权回调地址配置:https://auth.example.com/authCallBac原创 2021-02-13 23:43:15 · 2696 阅读 · 3 评论 -
MySQL报错检查你的版本for the right syntax to use near ‘describe’
问题描述前端添加请求发往后端处理时,发现报SQl错误。ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'describe from t_food' at line 1原因原来是t_food表中的字段名describe是MySQL的关键字,所以编原创 2021-01-27 22:38:20 · 9496 阅读 · 1 评论 -
Correct the classpath of your application so that it contains a single, compatible version of com.go
在Springboot 中依赖Gson,项目启动时报错:APPLICATION FAILED TO START***************************Description:An attempt was made to call a method that does not exist. The attempt was made from the following location: java.lang.invoke.MethodHandleNatives.resolve(原创 2021-01-23 20:01:55 · 632 阅读 · 0 评论 -
40029, 错误信息:code 无效,微信原始报文:{“errcode“:40029,“errmsg“:“invalid code, hints: [ req_id: RhfaCNNre-
错误提示信息40029, 错误信息:code 无效,微信原始报文:{"errcode":40029,"errmsg":"invalid code, hints: [ req_id: RhfaCNNre-小程序段显示的是请求失败,无效的验证码。解决方法出现的原因可能是微信小程序APPID配置有误,最容易出现的是后端SpringBoot配置文件中的APPID和小程序段项目打开时生成的APPID不一致造成的。后来更改后可以进行访问,发送code和AppID成功接收。参考:微信开发平台讨论区原创 2021-01-11 15:57:31 · 14632 阅读 · 1 评论 -
pip不是内部或外部命令解决方法
问题已经配置好Python环境,但是安装依赖时,出现pip不是内部或外部命令。解决方法找到pip.exe文件所在的目录,将所在路径配置到环境变量path中。再次输入pip原创 2020-11-20 21:42:42 · 8710 阅读 · 6 评论 -
SpringBoot启动报端口已被占用--解决
问题启动SpringBoot项目后发现启动失败,控制台输出以下内容Description: The Tomcat connector configured to listen on port 8100 failed to start. The port may already be in use or the connector may be misconfigured. Action: Verify the connector's configuration, identify and stop an原创 2020-11-19 18:30:35 · 4188 阅读 · 0 评论 -
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found):
出现异常:AbstractHandlerExceptionResolver.java:194 |org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver |Resolved exception caused by handler execution: org.apache.ibatis.binding.BindingException: Invalid bound statement (n原创 2020-11-06 19:28:33 · 490 阅读 · 0 评论 -
version can neither be null, empty nor blank
在用mybatis-generator逆向生成mapper和DAO的时候,出现了这个错误。mybatis-generator:generate原因是在pom.xml中我的mysql依赖没有写版本号。plugin里面的版本要和之前dependency中的相同。原创 2020-10-05 17:19:23 · 3073 阅读 · 0 评论 -
解决Establishing SSL connection without server‘s identity verification is not recommended.
WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existi原创 2020-08-13 11:32:24 · 67903 阅读 · 10 评论 -
nginx: [emerg] bind() to 0.0.0.0:80 failed (10013:
问题出现今天在win10安装nginx时候,启动nginx.exe时在dos窗口出现了这个错误,特此记录一下。解决方法上面报错信息的意思大概是:0.0.0:80地址访问不被允许。可能是80端口号被占用,于是输入netstat -aon | findstr :80查看使用80端口的进程信息根据进程id 4572在任务管理器下找到对应的进程,我的是被Tomcat占用了,所以选择停止该进程,...原创 2020-02-13 19:26:02 · 943 阅读 · 0 评论