今天刚升级到Xcode10,就遇到两个报错问题 错误一:Xcode 10: Build input file double-conversion cannot be found error: Build input file cannot be found: '../node_modules/react-native/third-party/double-conversion-1.1.6/src/strtod.cc' configure: error: in `../node_modules/r…
出错起因:      从GitLab clone项目 --> 用 npm install 命令下载依赖包 --> #npm run dev,报错 错误截图: 解决方法:   思路:单独 install 一下出错的module: Node Sass. 命令:#npm install node-sass --save-dev 或者 #cnpm install node-sass --save-dev (我用的后者)   解释:cnpm命令会从淘宝镜像下载相关资源包,--save-dev表示仅保存在…
本地成功运行的一个maven项目,在另一台机器复制下来并导入,运行时报错: java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener 其意思大概为找不到web.xml 中配置的Spring监听. 解决方法: 1. 右键单击工程项目 ->点击 properties 2. 选择 Deployment Assembly 3. 点击 Add -> Java Build Path Ent…
刚创建好一个项目,运行就报错:in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/logging/,然后百度了一下说maven没有这个jar,进仓库看了发现真的没有,然后就去下了一个 <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging-api</art…
今天在学习运用vue的nuxt/koa框架,初始化项目之后,在执行 $> npm run dev 时报错,错误详细信息如下: 点击查看报错的详细内容 > npm run dev Debugger attached. > ice@1.1.0 dev > backpack dev Debugger attached. Debugger attached. ERROR Failed to compile with 1 errors 下午5:52:10 error in ./server/…
今天用vue-cli新建vue项目的时候,发现项目怎么都跑不起来. 最后通过与以前项目作比较,发现prettier这个依赖的版本从原来的1.12.0升级成了1.13.1.我也不太清楚为什么升级后项目跑不起来. 暂时的解决方法:删除1.13.1版本的包(在node_modules文件夹),安装低版本的prettier,npm install --save-dev prettier@1.12.0…
1.npm i node-sass -D 在错误提示里有给出了方案,重新构建 node-sass,命令如下: npm rebuild node-sass --force 如果执行完成后不报错,就可以了. 也有可能会报 gyp Error 错误: gyp ERR! configure error  gyp ERR! stack Error: gyp failed with exit code: 1 .... gyp ERR! node -v v8.11.1  gyp ERR! node-gyp -…
Cannot find module 'webpack/bin/config-optimist' 在项目里面运行npm i webpack-dev-server Cannot find module 'webpack/bin/config-yargs' 在项目里面运行npm i webpack Cannot read property 'thisCompilation' of undefined 先卸载执行 npm uninstall --save-dev extract-text-webpac…
切换到项目目录pom.xml文件夹 执行以下命令: mvn test -e -X 找到出错信息 进入目录删除文件. 在ide里面重新部署项目即可.…
今天由于项目进行分支,负责开发迭代的功能对应不同的分支项目,没想到的是分支项目名称加上了功能的中文名字.要使用了resin发布项目的时候,报了 java.io.CharConversionException: C:\Users\Administrator\Desktop\resin-3.1.11\conf\resin.conf:309: illegal utf8 encoding 0xcc  错误. 1.通过大量查找资料没有结果,后来就使用Tomcat试试,发现是没问题的 使用Tomcat的时候…