1、错误描述
Caused by:org.hibernate.exception.ConstraintViolationException:Could not execute JDBC batch update.
2、错误原因
3、解决办法...
分类:
Web程序 时间:
2014-12-03 23:33:31
阅读次数:
527
1、错误描述
Caused by:java.sql.BatchUpdateException:ORA-02291:违反完整约束条件(PEKING.FKA844BA60FCCDD33)-未找到父项关键字
2、错误原因
3、解决办法...
分类:
数据库 时间:
2014-12-03 23:33:07
阅读次数:
388
很多人使用startActivity时候,会碰到如下的异常:
Caused by: android.util.AndroidRuntimeException: Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK flag. Is this really...
分类:
其他好文 时间:
2014-12-03 12:28:34
阅读次数:
138
正在做SpringMVC+Redis整合的练习使用的是spring-data-redis 和 Jedis配置好之后出现了以下错误:Caused by: java.lang.VerifyError: (class: org/springframework/data/redis/connection/j...
分类:
编程语言 时间:
2014-12-02 18:46:04
阅读次数:
645
前几天在编写一个自定义控件的时候,出现了这个这个异常:
Caused by: java.lang.UnsupportedOperationException: Can't convert to integer: type=0x3
然后定位到代码中的时候,发现是自定义控件中引用资源的时候报的错误,代码片段如下:
int iconId = mTypedArray.getInteger...
分类:
编程语言 时间:
2014-11-25 12:49:05
阅读次数:
181
我使用的框架是Struts2+Hibernate3+Spring,项目的后台数据库是Mysql,最近挪到正式服务器上了,处于一直打开服务的状态,就出现了java.net.SocketException: Software causedconnection abort: socket write er...
分类:
编程语言 时间:
2014-11-20 11:32:57
阅读次数:
214
ViewPager 报错:Caused by: java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first....
分类:
编程语言 时间:
2014-11-19 18:47:17
阅读次数:
149
是iBATIS.xml这句话出错了
a.updatedate >= #beginDt#
a.updatedate >= #endDt#
改成
and a.updateDate>=#beginDt#
and a.updateDate<=#endDt#
就好...
分类:
数据库 时间:
2014-11-16 10:44:57
阅读次数:
304
PuTTY在远程连接服务器之后,经常会断线提示“Software caused connection abort”,而且经常在很短的时间内就失去连接。
解决方案如下:
第一步:设置服务器
1、修改服务器中/etc/ssh/sshd.config 文件,将LoginGraceTime的值设为0,TCPKeepAlive 设为yes
2、service sshd restart 重启s...
分类:
系统相关 时间:
2014-11-11 22:57:17
阅读次数:
557
问题: 从SVN上检出了一个Maven项目,在执行clean命令时,出现如下错误:java.net.SocketException:Software caused connection abort: recv failed分析: 从日志中发现,Maven是在一个国外网站下载东西,我意识到这是遇到了传...
分类:
其他好文 时间:
2014-11-11 20:53:49
阅读次数:
265