问题解决
知音12138
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
问题:Nacos 中没有读取到数据库中存储的配置内容
Nacos 没有正确连接数据库。原创 2023-01-17 23:21:21 · 5134 阅读 · 0 评论 -
问题:MySQL 报错 Unable to load authentication plugin ‘caching_sha2_password‘ 的解决方案
这是 mysql 8.0+ 版本才出现的问题,原因是 mysql 8.0 默认使用 caching_sha2_password 身份验证机制,从原来的 mysql_native_password 更改为 caching_sha2_password。由于本地的 MySQL 使用的是最新版 8.0 版本,而打包的项目使用的则是比较低的版本,可以说是版本冲突产生的问题。原创 2023-01-17 20:49:06 · 2245 阅读 · 0 评论 -
问题:在 main 方法中使用 httpclient 时,idea 控制台会疯狂打印 DEBUG org.apache.http.wire 的日志
问题:在 main 方法中使用 httpclient 时,idea 控制台会疯狂打印。文件,占用非常大的容量。原创 2022-08-20 19:03:39 · 2412 阅读 · 0 评论 -
SpringBoot 项目启动时解决报错:Unable to connect to Redis; nested exception is io.lettuce.core.RedisConnection
报错信息如下:2021-10-24 23:11:33.297 ERROR 5952 --- [ main] o.s.boot.SpringApplication : Application run failedjava.lang.IllegalStateException: Failed to execute CommandLineRunner at org.springframework.boot.SpringApplication.callRunn原创 2021-10-24 23:14:06 · 3128 阅读 · 0 评论 -
快速删除前端项目中的 node_modules 文件夹
# 安装删除工具$ npm install rimraf -g# 执行删除操作$ rimraf node_modules原创 2021-10-23 23:54:58 · 645 阅读 · 0 评论 -
解决前端项目 npm install 时报错:Could not read from remote repository.
npm install 过程中,报错信息如下:npm ERR! code 128npm ERR! An unknown git error occurrednpm ERR! command git --no-replace-objects ls-remote ssh://git@github.com/nhn/raphael.gitnpm ERR! Connection reset by 20.205.243.166 port 22npm ERR! fatal: Could not read fro原创 2021-10-23 23:21:34 · 7514 阅读 · 2 评论 -
解决 SpringBoot 项目中,配置文件中 server.port 不生效
Rebuild Module:查看项目端口:原创 2021-09-07 09:55:50 · 2143 阅读 · 0 评论 -
IDEA 空行保留空格或者 TAB 符
IDEA 空行保留空格或者TAB 符问题:解决:原创 2021-08-25 17:07:28 · 1009 阅读 · 0 评论 -
IDEA 保留行尾的空格
问题:解决:设置为 None,保留行尾的空格原创 2021-08-25 17:03:00 · 498 阅读 · 0 评论 -
MinIO 中的图片在前端列表渲染时报错 404
确保报错 404 的图片确实存在且路径正确给桶配置策略:*.*原创 2021-04-12 22:33:49 · 2129 阅读 · 2 评论 -
windows 下解决端口占用
运行中输入 cmd 打开命令提示符通过 netstat 命令搜索到占用某端口的 PID# 列出所有端口的使用情况netstat -ano# 列出 9999 端口的使用情况netstat -aon | findstr 9999 # 端口状态 PID# TCP 0.0.0.0:9999 0.0.0.0:0 LI..原创 2021-04-12 22:15:58 · 351 阅读 · 0 评论 -
安装 cnpm
文章目录安装步骤参考链接安装环境:win10安装步骤提示:若 node 未配置环境变量,需要进入安装目录中,打开 Windows PowerShell 窗口再执行 shell 命令# 首先确认 nodejs 是否安装node -v# 安装淘宝镜像npm install -g cnpm -registry=https://registry.npm.taobao.org# 安装成功后提示...added 694 packages from 975 contributors in 18.5原创 2021-04-11 21:39:30 · 650 阅读 · 0 评论 -
解决 navicat 连接报错:FATAL:no pg_hba.conf entry
问题Navicat 工具连接服务器上的 PostgreSQL 数据库时报错[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-8lfpzLKg-1617935873905)(C:\Users\zhiyin\Desktop\no pg_hba.conf entry.png)]解决通过修改 PostgreSQL 的配置文件来允许远程连接修改 data/pg_hba.conf 文件linux 下搜索 pg_hba.conf 文件所在路径# 在 /var 目录下查找文件fi原创 2021-04-09 10:39:19 · 4679 阅读 · 0 评论
分享