草庐IT

KeyEntity

全部标签

java - 带有实体键和实体值的 JPA 映射

关键实体:@EntitypublicclassKeyEntity{@Id@GeneratedValue(strategy=GenerationType.TABLE)publicLongid;publicStringhandle;publicbooleanequals(Objecto){KeyEntityoke=(KeyEntity)o;returnhandle!=null?handle.equals(oke.handle):oke.handle==null;}publicinthashCode(){returnhandle!=null?handle.hashCode():0;}}值(v