
Exception&Error
文章平均质量分 78
iteye_2386
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
java.lang.IllegalStateException: getOutputStream() has already been called for t
WEB容器生成的servlet代码中有out.write(""),这个和JSP中调用的response.getOutputStream()产生冲突. 即Servlet规范说明,不能既调用response.getOutputStream(),又调用response.getWriter(), 无论先调用哪一个,在调用第二个时候应会抛出IllegalStateException,因为在jsp中,...2010-04-22 12:44:15 · 112 阅读 · 0 评论 -
java.net.ProtocolException: Server redirected too many times(20)
If the above doesn't apply, you may try to use the following code (hack) to skip the re-direction, get the Location header and re-connect: try { ...2010-04-22 12:45:21 · 1145 阅读 · 0 评论 -
quartz报错java.lang.NoSuchMethodError: org.apache.commons.collections.SetUtils.ord
原因是由于使用的commons-collections.jar版本太低导致的要使用3.*的才行。 对于使用MyEclipse的,如果导入了commons-collections.jar 3.*的包还不行, 而且没有找到其他的包的话很可能是MyEclipse自带的Liberary中包括了版本低的包而你导入了这个lib。 比如MyEclipse的Hibernate的Lib中包括commons-c...2010-04-22 12:46:16 · 157 阅读 · 0 评论 -
Struts2第1次启动时就报HTTP404错的解决方法
错误:Struts2第1次启动时就报HTTP404错的解决方法 2008-5-7 11:17:24 org.apache.catalina.core.StandardContext start 严重: Error filterStart 2008-5-7 11:17:24 org.apache.catalina.core.StandardContext start 严重: Context ...2010-04-22 12:47:48 · 107 阅读 · 0 评论 -
spring+struts2报UnsatisfiedDependencyException
错误:spring+struts2报UnsatisfiedDependencyException org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'org.apache.struts2.dispatcher.ServletDispatcherResu...2010-04-22 12:48:57 · 139 阅读 · 0 评论 -
启动tomcat服务时出现错误Failed creating java e:\jdk1.6\jre\bin\server\jvm.dll的解决办法 ...
把jdk\bin目录下的msvcr71.dll复制到tomcat安装目录的\bin下即可2010-04-22 14:47:42 · 2356 阅读 · 0 评论 -
hadoop常见错误
错误1:bin/hadoop dfs 不能正常启动,持续提示:INFO ipc.Client: Retrying connect to server: localhost/127.0.0.1:9000. Already tried 0 time(s).原因:由于 dfs 的部分文件默认保存在tmp文件夹,在系统重启时被删除。解决:修改core-site.xml 的 hadoop.tmp.dir...原创 2012-03-24 13:04:14 · 162 阅读 · 0 评论