
Java
ilusm
软件开发
展开
-
Hibernate: No row with the given identifier exists
最简单的原因是ID错误org.hibernate.ObjectNotFoundException: No row with the given identifier exists: [cn.cedex.srm.model.ShipNoticeOrder#A1093080516094434, ]...之前前台给后台传参数时。传了两个ID过去,一个从input中传过去的,一个已参数的形式传过去的。...2008-05-29 14:09:00 · 84 阅读 · 0 评论 -
[DEBUG]java.util.ConcurrentModificationException
import java.util.ArrayList;import java.util.Iterator;class User { private String userName, password; private int ID; User(int p_ID, String p_userName, String p_password) { ID = p_ID; userNa...2008-06-05 09:06:00 · 115 阅读 · 0 评论 -
Java48个关键字速查表
Java语言一共使用了48个保留关键字,他们主要可以分为如下几类。 +访问控制 private 私有, protected 保护, public 共享. +类、方法和变量修饰符 abstract 摘要, class 类, extends 扩允, final 结局, implements 工具, interface 接口, native 本地, new 新, static 静态, ...原创 2008-08-21 17:29:46 · 258 阅读 · 0 评论