0
点赞
收藏
分享

微信扫一扫

identifier of an instance of ……was alter from 2 to null


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方法请除缓存……

identifier of an instance of ……was alter from 2 to null_identifier

举报

相关推荐

From A 2 B Socket

0 条评论