
Exception
文章平均质量分 59
iteye_3260
这个作者很懒,什么都没留下…
展开
-
Could not create ActionMapper: WebWork will *not* work!
Could not create ActionMapper: WebWork will *not* work! 解决方法:将webwork.properties的webwork.objectFactory=springwebwork.objectFactory.spring.autoWire=name 两行去掉就可以了...原创 2011-06-09 16:37:59 · 110 阅读 · 0 评论 -
Bean property 'xxDao' is not writable or has an invalid setter method
Bean property 'xxDao' is not writable or has an invalid setter method. Does the parameter type of the setter match the return type of the getter?Caused by: org.springframework.beans.NotWritablePr...原创 2011-08-08 16:25:06 · 125 阅读 · 0 评论 -
java.sql.SQLException: ORA-01830: date format picture ends before converting ent
java.sql.SQLException: ORA-01830: date format picture ends before converting entire input string at oracle.jdbc.driver.DatabaseError.throwSqlException(Ljava.lang.String;Ljava.lang.Stri...原创 2011-08-17 17:48:26 · 545 阅读 · 0 评论 -
HTTP Status 500 - No action instance for path could be created
HTTP Status 500 - No action instance for path could be created 出现这个问题大部分解决方案都是,因为action的全路径名和在struts配置文件的action的type类型名字不一样,导致不能创建actiong,这也是最常见的错误,还有的就是包的问题,由于缺少某个包导致不能通过创建action,这里需要说明的一点是,就...原创 2011-09-16 15:03:18 · 294 阅读 · 0 评论 -
Struts FileUpload - Processing of multipart/form-data request failed
Struts FileUpload 异常处理之Processing of multipart/form-data request failed. 在使用FileUpload的过程中,有一个经常抛出异常如下: ERROR [http-8081-Processor21] (CommonsMultipartRequestHandler.java:201) -2008-04-10 1...原创 2011-09-16 15:52:57 · 128 阅读 · 0 评论 -
request.getHeader("referer") is null
referer 用来判断上一页是不是自己的网站如果我是直接在浏览器里输入有referer的页面,返回是null(jsp),也就是说referer只有从 "别的页面" 点击连接来到这页的才会有内容。...原创 2012-03-19 15:23:39 · 516 阅读 · 0 评论 -
org.apache.coyote.tomcat5.CoyoteResponseFacade.sendRedirec
【from http://www.cxy.me/bbs/viewbbs.asp?BoardID=23&ID=4863&star=1&skin=0】org.apache.coyote.tomcat5.CoyoteResponseFacade.sendRedirect(CoyoteResponseFacade.java:352)org.apache.jsp.test_j...原创 2012-03-19 15:25:47 · 187 阅读 · 0 评论 -
ORA-14551: cannot perform a DML operation inside a query
ORA-14551: cannot perform a DML operation inside a query 〖环境(Environment)〗OS:SOLARIS 9DB:ORACLE10G 〖现象(Symptom) 〗Step01:创建函数f_stu。SQL> create or replace function f_stu 2 retu...原创 2012-04-26 14:49:54 · 212 阅读 · 0 评论 -
java.sql.SQLException: 索引中丢失 IN 或 OUT 参数
java.sql.SQLException: 索引中丢失 IN 或 OUT 参数:: 2 at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112) at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseEr...原创 2012-05-07 17:00:01 · 670 阅读 · 0 评论 -
Oracle_ojdbc6 使用 报错
via: http://sd8089730.iteye.com/blog/1574884 执行java应用 java -Djava.ext.dirs=./lib -classpath classes test.Test报错,但配置文件都正确java.sql.SQLException: ORA-01005: null password given; logon denied ...原创 2015-06-10 14:29:24 · 355 阅读 · 0 评论 -
Hibernate_a different object with the same identifier value was already associat
via: http://www.blogjava.net/hrcdg/articles/157724.html 1、a different object with the same identifier value was already associated with the session。 错误原因:在hibernate中同一个session里面有了两个相同标识但是是不同实体...原创 2014-07-05 17:03:48 · 249 阅读 · 0 评论 -
Connection reset by peer: socket write error
Connection reset by peer: socket write error错误分析: via: http://hi.baidu.com/suofang/item/2a80ac9ab7afd588581461f8常出现的Connection reset by peer: 原因可能是多方面的,不过更常见的原因是: ①:服务器的并发连接数超过了其承载量,服务器会将其中一...原创 2013-03-14 10:24:14 · 96 阅读 · 0 评论 -
SqlMapClient operation; uncategorized SQLException for SQL []; SQL state [null];
网上解决方案1.起初没有创建序列s_log,因此需要在Oracle补上s_log序列。<!-- 增加 日志 --> <insert id="logSave" parameterClass="com.reportcenter.sys.dto.OperateLogDto"> INSERT INTO T_LOG(C_AUTOID,USRCDE,USR...原创 2011-08-04 15:38:16 · 707 阅读 · 0 评论 -
org.xml.sax.SAXParseException: Document root element "struts-config", must match
org.xml.sax.SAXParseException: Document root element "struts-config", must match DOCTYPE root "structs-config". 头文件换一下spring1.X使用DOCTYPE,而2.X版本使用schema。我们使用低版本的spring就要配置文件使用dtd解析方式,使用高版本的就要使用x...原创 2011-08-01 22:19:38 · 182 阅读 · 0 评论 -
Oracle database connection problem
PROBLEMYou are attempting to connect to an Oracle instance using JDBC and you are receiving the following error. java.sql.SQLException: Io exception: The Network Adapter...原创 2011-06-09 16:45:14 · 129 阅读 · 0 评论 -
Error listenerStart
在运行web程序时,服务器报出Error listenerStart的严重错误,导致页面无法正常访问或其他问题出现。这类问题通常都是因为在web.xml里面添加了<listener> <listener-class> org.springframework.web.context.ContextLoaderListener </lis...原创 2011-06-11 11:50:21 · 83 阅读 · 0 评论 -
No SqlMapClient specified
Exception in thread "main" java.lang.IllegalArgumentException: No SqlMapClient specified at org.springframework.util.Assert.notNull(Assert.java:112) at org.springframework.orm.ibatis.SqlMapClientT...原创 2011-06-15 08:58:58 · 188 阅读 · 0 评论 -
exception: cannot find actionmappings or actionformbeans collection
多种情况会导致这个问题,但大致就是以下几种情况: 1。Web.xml未初始化问题少了一个<load-on-startup>0</load-on-startup>这样开始是没有加载这个类,就没有初始化struts-config.xml,所以找不到actionmappings or actionformbeans collection。 2。s...原创 2011-06-22 22:45:24 · 109 阅读 · 0 评论 -
getOutputStream() has already been called for this response
java.lang.IllegalStateException: getOutputStream() has already been called for this response getOutputStream() has already been called for this response问题的解决在jsp向页面输出图片的时候,使用response.getOutputStr...原创 2011-06-22 23:48:59 · 631 阅读 · 0 评论 -
ORA-00942 Table or View Does Not Exist Oracle Error
Cause: java.sql.SQLException: ORA-00942: table or view does not existThen I try to run the sql statement that the webapp trying to execute before hitting this error and it returns the results with...原创 2011-06-22 23:55:33 · 343 阅读 · 0 评论 -
java.sql.SQLException: ORA-00933: SQL 命令未正确结束
java.sql.SQLException: ORA-00933: SQL 命令未正确结束 Cauz:ql语句中有非法字符,例如全角字符等原创 2011-06-30 12:16:20 · 372 阅读 · 0 评论 -
The Network Adapter could not establish the connection
1、oracle配置 oracle9i2中把C:\oracle\ora92\network\admin 目录下的listener.ora 和tnsnames.ora 文件中的HOST改为:HOST = 127.0.0.1 。如下(玫红色标记为需要修改处):(注意:连接远程计算机中oracle数据库的配置中的host不可修改。) File: C:\oracle\ora92\ne...原创 2011-07-15 17:05:52 · 190 阅读 · 0 评论 -
[interceptor.FileUploadInterceptor:intercept] [Removing file filesXXX .tmp]
上传完文件时控制台显示[interceptor.FileUploadInterceptor:intercept] [Removing file myfile d:\upload__3d7cf8b_11936276cf8__7ffd_00000011.tmp],如果把 D: 盘移掉,则出现相关异常:Failed to parse multipart requestorg.apache.commo...2011-07-25 11:18:54 · 339 阅读 · 0 评论 -
java.text.ParseException: Unparseable date: "11/10/10" at java.text.DateFormat.
使用DateFormat的使用,然后自己试了下,结果出来个错误:java.text.ParseException: Unparseable date: "11/10/10" at java.text.DateFormat.parse(DateFormat.java:337)下面是Date的输出比较:Date date = new Date();System.out.printl...原创 2011-08-01 10:39:30 · 435 阅读 · 0 评论 -
Error creating form bean of class...
Error creating form bean of class... <form-bean name= "xxxForm " type= "com.xxx.xxx.form.XXXForm " /> formbean的最后是不是有空格.就会出这个错误. 正确的应该是: <form-bean name= "xxxForm " type= "com.xxx...原创 2011-08-01 10:44:52 · 175 阅读 · 0 评论 -
It is indirectly referenced from required .class file
via: http://www.blogjava.net/zJun/archive/2007/10/16/153374.html 在Eclipse中遇到The type XXX cannot be resolved. It is indirectly referenced from required .class files错误.....,查找的解决办法如下:一: It is indir...原创 2014-08-19 15:30:06 · 108 阅读 · 0 评论