
踩坑bug笔记
黑皮爱学习
爱学习,爱分享!
展开
-
Error:java: 读取D:\repository\com\fasterxml\jackson\datatype\jackson-datatype-jsr3Error:java: 读取jar出错
错误Error:java: 读取D:\install\maven\maven-repository\com\fasterxml\jackson\datatype\jackson-datatype-jsr310\2.10.2\jackson-datatype-jsr310-2.10.2.jar时出错; error in opening zip file错误截图: 错误原因:预估原因是本地jar文件损坏了,可以重新删除对应的报错文件,maven重新引入解决:删除仓库下报错的文件夹(一定要删除文件夹,只删除jar原创 2022-07-11 22:43:37 · 4185 阅读 · 1 评论 -
virtualBox安装centos7,鼠标无法使用,无法选择语言
virtualBox安装centos7,鼠标无法使用,无法选择语言原创 2022-07-11 19:46:31 · 5241 阅读 · 2 评论 -
idea启动报错org.yaml.snakeyaml.scanner.ScannerExceptionwhile scanning for token found character ‘@‘ t
情景描述代码里面使用了参数配置以前跑的好好的,换了个代码分支,就这个一直报错snakeyaml.scanner.ScannerException: while scanning for the next token found character '@' t解决方案:我的方法是,执行maven的:clean和install,执行之后,项目重新启动就没有报错了原因猜想:估么着是idea缓存的问题...原创 2022-03-16 14:15:57 · 2271 阅读 · 0 评论 -
Could not get responseError: write EPROTO 51601288:error:100000f7:SSL routines:OPENSSL_internal:WRO
使用postman调接口报错Could not get responseError: write EPROTO 51601288:error:100000f7:SSL routines:OPENSSL_internal:WRONG_VERSION_NUMBER:../../third_party/boringssl/src/ssl/tls_record.cc:242:截图如下解决方案本地调用,把https改为http...原创 2022-02-16 14:03:02 · 5715 阅读 · 1 评论 -
接口访问报错:301 Moved Permanently
场景今天接口访问报错:301 Moved Permanently。我傻傻的检查了好半天后台日志,发现怎么都找不到。后来问了大神,才晓得301请求压根就没有到后台,当然没有日志了。报错如下:解释:「301 Moved Permanently」表示永久重定向,说明请求的资源已经不存在了,需改⽤新的 URL 再次访问。 301 和 302 都会在响应头里使用字段 Location ,指明后续要跳转的 URL,浏览器、postman等会自动定向新的 URL。解决:检查接口请求地址。原创 2022-02-07 16:06:25 · 30186 阅读 · 0 评论