10)引入junit -单元测试库 √
用户中心第一期 视频 2.15.29
11)注册 id
用户中心终 视频 0.53.00
12)mq队列
BI第七期 1.52.0
13)运行npm install 时,卡在sill install loadAllDepsIntoIdealTree不动
相关链接https://blog.csdn.net/zjq_1234/article/details/88946863
1.npm install一直停留在fetchMetadata: sill mapToRegistry uri http://registry.npmjs.org/whatwg-fetch可以使用如下命令设置为淘宝的镜像源:
npm config set registry https://registry.npm.taobao.org
2. 使用如下命令检验是否成功:
npm config get registry
输出淘宝镜像路径
1.继续运行 npm install ,安装过程畅通无阻
14)erro报错
这个报错是由于在RabbitMQ中的队列参数不匹配导致的。错误信息中提到了问题所在:
inequivalent arg 'x-dead-letter-exchange' for queue 'ai_question_queue' in vhost '/': received none but current is the value 'ai-dlx-exchange' of type 'longstr'
这个错误表示在队列 ai_question_queue 的参数 x-dead-letter-exchange 不匹配,当前值是 'ai-dlx-exchange',但接收到的值是 none。这可能是因为队列在声明的时候参数设置不一致导致的。
要解决这个问题,你需要确保你的队列声明参数与之前定义的参数一致。具体来说,检查队列 ai_question_queue 的声明,并确保在声明时设置了正确的 x-dead-letter-exchange 参数。如果你使用代码声明队列,可以类似以下方式来设置参数:
Map<String, Object> args = new HashMap<>(); args.put("x-dead-letter-exchange", "ai-dlx-exchange"); // 设置正确的死信交换机 Queue queue = new Queue("ai_question_queue", true, false, false, args);
如果你在 RabbitMQ 的管理界面中手动创建队列,确保在队列的参数设置中包含了正确的 x-dead-letter-exchange
值。
总之,解决这个问题的关键是确保队列参数的一致性,特别是 x-dead-letter-exchange
参数的设置。
15)查询电脑端口占用情况命令
netsh interface ipv4 show excludedportrange protocol=tcp
16)页面颜色
<div style={{ display: 'flex', justifyContent: 'center', alignItems: 'center' }}> <div style={{ background: '#007BFF', padding: '5px 10px', borderRadius: '4px', display: 'inline-block' }}> <Divider style={{ fontSize: '20px', fontWeight: 'bold', color: 'white', margin: 0 }}>分析结论</Divider> </div> </div>
我的选择#007BFF
/* 背景色为淡蓝色 */ body { background-color: #E6F7FF; } /* 正文文本颜色为深灰色 */ body { color: #333; } /* 链接颜色为浅蓝色,悬停时变为深蓝色 */ a { color: #007BFF; } a:hover { color: #0056b3; } /* 按钮背景色为浅绿色,文本颜色为白色 */ .button { background-color: #A7E1B1; color: white; } /* 提示框背景色为淡黄色,文本颜色为深灰色 */ .tooltip { background-color: #FFF3D9; color: #333; }
17)宝塔部署vue项目刷新404解决方案
解决方案链接:
https://blog.csdn.net/Mrzhao5788/article/details/120279306
18)linux解压时报错:gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error exit delayed
参考链接:
https://blog.csdn.net/hjing123/article/details/88862650
去掉 z #tar -vxf [解压文件名】
idea快捷操作小技巧
在idea中如何进行单词的全局替换
先按ctrl+f再按ctrl+r
全局替换 crtl+shift+r
在idea中创建测试类快捷键 ctrl+shift+t --> create new test
windows区域截图快捷键 win 键+ shift + s键
结语
项目笔记持续更新中!
链接:https://www.yuque.com/nanchengcyu/dubfny/ibwmnan5bo9uf51x?singleDoc# 《TechMindWave》