
异常解决方案
文章平均质量分 66
lijun123123
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Tomcat不能编译JSP文件的问题解决方案
Tomcat不能编译JSP文件的问题解决方案 在Tomcat出现类似如下异常: The system is out of resources. Consult the following stack trace for details. java.lang.OutOfMemoryError 这是由于Tomcat使用的是Ant进行编译JSP文件的,而Ant会因为JVM的最大...2008-05-29 15:25:35 · 1845 阅读 · 0 评论 -
loader constraints violated when linking javax/el/ExpressionFactory class
java.lang.LinkageError: loader constraints violated when linking javax/el/ExpressionFactory class 严重: Servlet.service() for servlet jsp threw exceptionjava.lang.LinkageError: loader constraints vio...原创 2010-05-11 17:12:30 · 169 阅读 · 0 评论 -
The Apache Tomcat Native library was not found
Tomcat启动的时候出现下面这样的提示: 2006-1-26 19:44:11 org.apache.catalina.core.AprLifecycleListener lifecycleEvent信息: The Apache Tomcat Native library which allows optimal performance in production environments wa...原创 2008-12-18 18:50:35 · 1574 阅读 · 0 评论 -
getOutputStream() has already been called for this
tomcat5下jsp出现getOutputStream() has already been called for this response异常的原因和解决方法 【标 题】:tomcat5下jsp出现getOutputStream() has already been called for this response异常的原因和解决方法 【关键字】:tomcat5,jsp,getOut...2008-11-27 12:03:03 · 163 阅读 · 0 评论 -
eclipse内存溢出
运行eclipse时出现错误提示框 错误提示大概如下: MyEclipse has detected that less than 5% of the 64MB of Perm Gen (Non-heap memory) space remains. It is strongly recommended that you exit and restart MyEclipse with new ...原创 2009-03-20 11:07:29 · 237 阅读 · 0 评论 -
能上QQ但不能上网问题精解
能上QQ但不能上网问题精解 一、感染了病毒所致 这种情况往往表现在打开IE时,在IE界面的左下框里提示:正在打开网页,但老半天没响应。在任务管理器里查看进程,(进入方法,把鼠标放在任务栏上,按右键—任务管理 器—进程)看看CPU的占用率如何,如果是100%,可以肯定,是感染了病毒,这时你想运行其他程序简直就是受罪。这就要查查是哪个进程贪婪地占用了CPU资源。 找到后,最...原创 2008-08-26 09:12:24 · 131 阅读 · 0 评论 -
Struts常见异常信息和解决方法
Struts常见异常信息和解决方法 以下所说的struts-config.xml和ApplicationResources.properties等文件名是缺省时使用的,如果你使用了多模块,或指定了不同的资源文件名称,这些名字要做相应的修改。 1、“No bean found under attribute key XXX” 在struts-config.xml里定义了一个Action...原创 2008-08-01 14:41:27 · 129 阅读 · 0 评论 -
java.io.CharConversionException
java.io 类 CharConversionException 继承关系: java.lang.Object java.lang.Throwable java.lang.Exception java.io.IOException java.io.CharConversionException 所有已实现的接口...2008-07-31 10:37:42 · 1238 阅读 · 0 评论 -
Jsp常见异常(转)
异常 javax.servlet.jsp.JspException: Cannot retrieve mapping for action /Login (/Login是你的action名字) 可能原因 action没有再struts-config.xml 中定义,或没有找到匹配的action,例如在JSP文件中使用 。最好使用struts console工具检查一下。 ...2008-05-29 16:10:09 · 179 阅读 · 0 评论 -
Cannot find bean org.apache.struts.taglib.html.BEA
Cannot retrieve definition for form bean null on action .......异常的原因 [code="java"]Cannot find bean org.apache.struts.taglib.html.BEAN in any scope[/code] 造成这个异常,十有八九是使用了只能在html:form标签中才能使用的标签,比如ht...2008-05-29 15:55:43 · 94 阅读 · 0 评论 -
new IndexSearcher(path)报错
lucene创建索引中的构造函数IndexWriter(String path, Analyzer a, boolean create, IndexWriter.MaxFieldLength mfl) ,这里的boolean create参数的意思并非是否创建索引,而是覆盖还是追加的意思。原文见官方文档:create - true to create the index or overwrite ...原创 2010-05-11 18:32:41 · 197 阅读 · 0 评论