maven常识安装配置12345按照大数据开发工程师hdfs那章安装的 下载 解压 环境变量 安装目录下setting配置文件配置.m2位置 idea设置里配置maven home user setting local repository廖雪峰讲的也可以
maven仓库位置1mvnrepository.com
pom添加依赖12345<dependecies> <dependecy> ... </dependecy></dependecies>
编译打包插件12345678910111213141516171819202122232425262728293031323334353637383940<build> <plugins> <!-- compiler插件, 设定JDK版本 --> <plugin> <groupId>org.apache.maven.plugins</g ...
npm使用–verbose参数使用这个什么npm命令时,后面加个**–verbose**参数,不然每次都看不出来,命令到底又没有在运行~
https://registry.npmjs.org/xxxxx attempt 1 failed with ECONNREFUSED报这种错误:npm http fetch GET https://registry.npmjs.org/xxxxx attempt 1 failed with ECONNREFUSED
先查看代理
12$ npm config get https-proxyhttp://127.0.0.1:8080
查看本地端口又没有对应服务
1$ netstat -ano
清空代理
12npm config delete https-proxynpm config delete proxy
12npm config get proxynpm config get https-proxy
结果都返回null,说明清空了
到这里至少不报这种错误,想哭~
十分感谢下面的链接,现在要在搜索引擎里能找到一份解决方案太难了~
参考链接
...





