部署项目的随手记

1.npm 安装依赖报错npm ERR ERESOLVE unable to resolve dependency tree

报错信息:

D:\桌面\代码\定位融合系统搭建\参考\snowy-master\_web>npm install
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! While resolving: [email protected]
npm ERR! Found: [email protected]
npm ERR! node_modules/eslint
npm ERR!   dev eslint@"^6.8.0" from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer eslint@"^5.0.0" from [email protected]
npm ERR! node_modules/eslint-plugin-vue
npm ERR!   dev eslint-plugin-vue@"^5.2.3" from the root project
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR!
npm ERR! See C:\Users\AppData\Local\npm-cache\eresolve-report.txt for a full report.

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\AppData\Local\npm-cache\_logs\2022-09-27T01_49_36_889Z-debug-0.log

解决:

是版本不兼容导致的,可能是因为npm版本太高,而安装的vue版本过低。

在代码后面加上:

--legacy-peer-deps

比如说:

npm i --legacy-peer-deps

2.IDEA中Maven的安装和简单使用_My heart is toward you的博客-CSDN博客_idea怎么安装maven


3.Springboot 报错 :Module not specified

Module not specified_ooooooooooooooxiaosu的博客-CSDN博客_module not specified

我自己使用成功的方法是:

方法2: 重新导入包

在模块名上右键-Maven-Reimport

部署项目的随手记_第1张图片

4.报错org.springframework.data.redis.RedisConnectionFailureException: Cannot get Jedis connection; nested exception is redis.clients.jedis.exceptions.

原因:我没安装redis......

Redis 安装 | 菜鸟教程 (runoob.com)

需要注意的是:当我们打开一个 cmd 窗口 使用 cd 命令切换目录到 C:\redis 运行:

redis-server.exe redis.windows.conf

部署项目的随手记_第2张图片

就算是启动了Redis了,但是别关这个cmd窗口,否则就访问不了啦。

你可能感兴趣的:(vue.js,npm,javascript)