本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- xiangjie88
- zysnba
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- gaojingsong
- kaizi1992
- xpenxpen
- 龙儿筝
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- mwhgJava
- kingwell.leng
最新文章列表
hadoop 报错 org.apache.hadoop.mapred.TaskTracker: Process Thread Dump: lost task
项目最近报错,形如:
org.apache.hadoop.mapred.TaskTracker: Process Thread Dump: lost task
Thread 2958 (process reaper):
State: RUNNABLE
Blocked count: 0
Waited count: 0
Stack:
java.lang ...
hadoop 报错 org.apache.hadoop.hdfs.server.namenode.LeaseExpiredException
报错:
org.apache.hadoop.hdfs.DFSClient:Failed to close file
org.apache.hadoop.ipc.RemoteException(org.apache.hadoop.hdfs.server.namenode.LeaseExpiredException)
解决方法:
修改linux打开文件最大限制
echo "f ...
Hbase ScannerTimeoutException 报错
参考 http://snv.iteye.com/blog/1682428
两个问题解决方法:
1.在代码中添加
Configuration conf = HBaseConfiguration.create()
conf.setLong(HConstants.HBASE_REGIONSERVER_LEASE_PERIOD_KEY, 120000)
2.在$HBA ...
关于javaidentifier of an instance of
Struts Problem ReportStruts has detected an unhandled exception:Messages:
identifier of an instance of cn.itcast.elec.domain.ElecApplication was altered from 1 to null
File:org/hibernate/event/def ...
转 mina 遇到的问题
转:http://littcai.iteye.com/blog/227476
Socket服务器在启动是检测到端口被绑定的话会抛出java.net.BindException:Address already in use: JVM_Bind;而MINA不会
客户端在调用connect方法时,如果连接主机或端口失败,并不会抛出任何异常,跟踪MINA源码可知,实际调用的是Abstr ...
The method getJspApplicationContext(ServletContext) is undefined for the type
一、异常:
The method getJspApplicationContext(ServletContext) is undefined for the type JspFactory.
二、原因:
这个异常是由于项目里的jar包和容器里的jar包冲突引起的。
三解决方案:
如果你使用的是tomcat,而你又把servlet-api.jar,jsp-api.j ...
<转>win7 64位在eclipse中集成subclipse插件失败的处理
因为项目需要,在eclipse中使用svn进行版本的管理,如果你的操作系统是32位的当然没有问题直接在help下面操作Install New Software就ok了,但是如果是操作系统是64位的同样的步骤就会报错了。所以研究几天后,解决办法:
下载EclipseIDE。下载地址:http://www.eclipse.org/downloads/如果是普通Java项目,选择classic版。如果 ...
centos6.2 yum install报错kernel-2.6.32-220.13.1.el6.x86_64 has missing requires...
centos6.2上执行yum install gcc报错:
kernel-2.6.32-220.13.1.el6.x86_64 has missing requires of kernel-firmware >= ('0
', '2.6.32', '220.13.1.el6')
解决方法:
# vi /etc/yum.conf 注释此项即可“#exclude=kernel*”
此参数的意思 ...
jdbc 报错 - 索引中丢失 IN 或 OUT 参数:
jdbc 报错 - 索引中丢失 IN 或 OUT 参数:
通常产生这种异常,是因为语句参数类型不一致所导致,如preparedStatement中的参数本应该是int/integer类型,但是设置参数是setString(1,String.valueof(xxx));
或是现在流行的hibernate和ibatis的参数类型配置有问题,Integer配置为varchar2了。
所 ...
eclipse debug source not found
eclipse开发过程进行debug时提示“Source not found ”,无法进行正常的debug编译。可以使用以下方法解决
1. 错误页面上有个链接 add project path(具体名称忘记了),点击进去,然后再添加自己的项目进入。
2. Windows - Preference - Java - Compiler。 找到 add source file name t ...
maven NoGoalSpecifiedException
转(http://tom.grade1986.blog.163.com/blog/static/36033556201241514731684/)
异常信息:
[INFO] Scanning for projects…[INFO][INFO] BUILD FAILURE[INFO][INFO] Total time: 0.109s[INFO] Finished at: Wed Apr 1 ...