identifier of an instance of ……was alter from 2 to null
阿新 • • 發佈:2019-01-06
Undefined Error: org.hibernate.HibernateException: identifier of an instance of
com.shkco.adsr3.staticdata.vo.ClientGroup was altered from 2 to null
List<IClientGroup> clientGroupList = clientGroupService.getAllClientGroup(sessionContext); boolean clientGroupValidate = true; if(clientGroup != null){ if(clientGroupList != null){ for(IClientGroup clientGroups: clientGroupList){ if(clientGroup.equals(clientGroups.getClientGroupId())){ clientGroupValidate = false; break; } } } if(Boolean.TRUE.equals(clientGroupValidate)){ IErrorMessage errorMsg = new ErrorMessage(); errorMsg.setErrorCode("SUMARAI00035"); errorMsg.setEnglishMessage("The clientGroup value must be in the DB!"); errorMsg.setChineseMessage("The clientGroup value must be in the DB!"); errorMessages.add(errorMsg); } }
clientGroupService.getAllClientGroup(sessionContext);
快取問題
使用evict方法請除快取……