分类目录归档:错误警告

开发中常见的一些错误和警告

错误警告

TimeoutError: The operation was aborted due to timeout at new DOMException

TimeoutError: The operation was aborted due to timeout at new DOMException

​ 在安装前端项目依赖时,有时候会报超时错误: TimeoutError: The operation was aborted due to timeout at new DOMException (node:internal/per_co … 继续阅读

发表在 错误警告 | 标签为 , , , , , , , | 留下评论
错误警告

java.lang.Error: Unresolved compilation problem

java.lang.Error: Unresolved compilation problem

​有时候在把项目部署到 IDE 配置的 Tomcat 中时,启动项目不报错,但运行项目时,出现如下错误: java.lang.Error: Unresolved compilation problem:  一般出现该问题的原因大概 … 继续阅读

发表在 错误警告 | 标签为 , , , , , , , , | 留下评论
错误警告

Your local changes to the following files would be overwritten by merge: .DS_Store

Your local changes to the following files would be overwritten by merge: .DS_Store

GIT 代码管理时,在合并分支代码过程中,报如下错误信息,导致代码无法合并。 Your local changes to the following files would be overwritten by merge: .DS_Stor … 继续阅读

发表在 错误警告 | 标签为 , , | 留下评论
错误警告

启动 Nginx 报错 Starting nginx: nginx: [emerg] bind() to 0.0.0.0:6666 failed (13: Permission denied)

启动 Nginx 报错 Starting nginx: nginx: [emerg] bind() to 0.0.0.0:6666 failed (13: Permission denied)

在配置好 Nginx 代理端口后,启动 Nginx 服务,结果报错如下: Starting nginx: nginx: [emerg] bind() to 0.0.0.0:6666 failed (13: Permission denied … 继续阅读

发表在 错误警告 | 标签为 , , , | 留下评论
错误警告

-bash: /usr/local/java/bin/java: No such file or directory

-bash: /usr/local/java/bin/java: No such file or directory

在 Linux 系统中安装 JDK 环境,配置好环境变量后,输入 java、javac 或者 java -version 等时,都提示如下错误: -bash: /usr/local/java/bin/java: No such file o … 继续阅读

发表在 错误警告 | 标签为 , , , , | 留下评论
错误警告

ORA-01502: 索引或这类索引的分区处于不可用状态

ORA-01502: 索引或这类索引的分区处于不可用状态

原因: 出现这个问题,可能有人move过表,或者disable 过索引。 alter table xxxxxx move tablespace xxxxxxx 命令后,索引就会失效。 alter index index_name  unus … 继续阅读

发表在 错误警告 | 标签为 , , | 留下评论
错误警告

ORA-39726:不支持对压缩表执行添加/删除列操作

ORA-39726:不支持对压缩表执行添加/删除列操作

对 Oracle 数据库中的表进行添加或者删除列等操作时,有时会报如下错误: ORA-39726:不支持对压缩表执行添加/删除列操作 究其原因,是因为把表压缩了,压缩后的表不能进行列的添加和删除等操作。 解决方法: 把列设置为 UNUSED … 继续阅读

发表在 错误警告 | 标签为 , , | 留下评论
错误警告

无法启动此程序,因为计算机中丢失MSVCR110.dll

无法启动此程序,因为计算机中丢失MSVCR110.dll

笔者在一次运行 php.exe 时,运到“无法启动此程序,因为计算机中丢失 MSVCR110.dll。尝试重新安装该程序以解决此问题。”的提示,当时很无语,因为系统是刚刚安装好的,而且是最新版本的。 有问题就得解决,网上查询了很多的资料,都 … 继续阅读

发表在 错误警告 | 标签为 , , , | 留下评论
错误警告

Unsupported major.minor version 51.0

Unsupported major.minor version 51.0

如果在 WEB 项目开发中,Eclipse 或 MyEclipse 导入的新项目,发布后运行时,会报错如下: Unsupported major.minor version 51.0 导致上面错误的原因是:Eclipse 或 MyEclip … 继续阅读

发表在 错误警告 | 标签为 , , , , , | 留下评论
错误警告

计算机中丢失 MSVCR110.dll

计算机中丢失 MSVCR110.dll

在安装 wamp 时,在安装完成后电脑会提示“无法启动此程序,因为计算机中丢失 MSVCR110.dll。尝试重新安装该程序以解决此问题。”如何解决该问题,有两种方法。 方法一:下载一个 msvcr110.dll 文件,放到 C 盘的 sy … 继续阅读

发表在 错误警告 | 标签为 , , , | 留下评论
错误警告

Configuration problem: Unable to locate Spring NamespaceHandler for XML schema

Configuration problem: Unable to locate Spring NamespaceHandler for XML schema

1. 配置 spring-security 时报错为:Configuration problem: Unable to locate Spring NamespaceHandler for XML schem 原因:忘记添加 spring- … 继续阅读

发表在 错误警告 | 标签为 , , , | 1 条评论
错误警告

Syntax error, annotations are only available if source level is 1.5

Syntax error, annotations are only available if source level is 1.5

在 Eclipse 或者 MyEclipse 开发环境中,运用 Hibernate 开发项目时,如果碰到下面这样的错误: Syntax error, annotations are only available if source leve … 继续阅读

发表在 错误警告 | 标签为 , , , | 留下评论