最近在实验maven结构的maven工程时,碰到一个问题,springbean总是初始化失败: Related cause:org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean wi...
分类:
编程语言 时间:
2014-07-07 12:45:29
阅读次数:
854
原文:解决IIS7运行ASP提示错误:An error occurred on the server when processing the URL. Please contact the system administrator 在WINDOWS7或SERVER2008上安装了IIS7,调试...
分类:
Web程序 时间:
2014-07-07 11:35:36
阅读次数:
250
运行mvn eclipse:eclipse时,经常会出现因为maven项目过大,导致内存不足java栈溢出的error, 信息如下:[INFO] ------------------------------------------------------------------------[ERRO...
分类:
其他好文 时间:
2014-07-02 18:56:30
阅读次数:
251
1、初始化密码 >sudo bin/mysqladmin -u root password 'pwd string'2、ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO) 1)添加启动参...
分类:
数据库 时间:
2014-07-02 18:51:21
阅读次数:
172
当数据库已经建好在DB里,SQL Server 2005 和 SQL Server 2008使用.Bak文件还原的时候,会出现 error : "The backup set holds a backup of a database other than the existing" 查了网上的方法:...
分类:
数据库 时间:
2014-07-02 18:48:45
阅读次数:
203
Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:Failure executing javac, but could not parse the error:**.jar时出错; error in...
分类:
系统相关 时间:
2014-07-02 18:42:16
阅读次数:
276
照抄大牛的Demo,自己信心满满地建好个各种项,结果死活不让通过,遇到了以下几个问题(大部分是自己作出来的...)1.运行不起来,报错如下Error 26:SQL Server does not allow remote connections. (provider: SQL Network Int...
分类:
Web程序 时间:
2014-07-02 18:18:33
阅读次数:
226
项目要求NDK开发App程序,于是import了工程项目,搭好了环境,结果出现各种Type 'xxx' could not be resolvedMethod 'xxx' could not be resolved等等Semantic Error。但是工程本身并不存在错误,可以成功编译。解决方法:明...
分类:
其他好文 时间:
2014-07-02 17:05:07
阅读次数:
278
1. C++ 没有明确定义如何释放指向不是用new 分配的内存地址的指针。下面提供了一些安全的和不安全的delete expressions 表达式。
int i; 242
int *pi = &i;
string str ="dwarves";
double *pd = newdouble(33);
delete str; // error: str is n...
分类:
编程语言 时间:
2014-07-02 16:36:12
阅读次数:
225
这里讨论的是redhat。linux是有文件句柄限制的,默认是1024,作为一台生产服务器,在linux下面部署应用的时候,很容易达到这个数量的限制,然后报错error:toomanyopenfiles,所以应当把这个值改大一些,在高负载情况下要设置为更高,但最高只能为65535。有人说这里默认的1024是..
分类:
系统相关 时间:
2014-07-02 16:09:41
阅读次数:
270