我在Google App Engine中使用Objectify进行数据存储。我有一个包含6个属性的实体。 例如,
电子邮件
我需要为实体编写更新端点。我希望更新Endpoint应该能够使用指定的字段而不是整个实体更新实体。例如如果我想更新 mobile_number ,它应该单独更新手机号码。或者如果我想更新 firstName ,它应该仅更新。
为此,我需要编写一个基于字段更新实体的通用方法。
非常感谢提前!
答案 0 :(得分:0)
您在事务中加载并保存实体。
ofy().transact(() -> {
Thing thing = ofy().load().key(key).now();
thing.setWhatever();
ofy().save().entity(thing);
});
交易保证所有工作单元都有效地串行执行。不是实际连续执行,但数据将保持一致,就好像所有工作单元都已序列化一样。
答案 1 :(得分:0)
是的我通过以下方式修复了此更新。
将输入参数作为Hashmap,我可以获取要更新的用户属性。 hashmap的键应该与Entity的属性值相同。
public Response update(HashMap<String, String> ProfileEntity) {
//update logic
}
并根据以下if条件更新值:
ProfileEntity existingEntity = getById(ProfileEntity.get("key"));
if(existingEntity == null)
System.out.println("Invalid Profile Key");
if(ProfileEntity.containsKey("firstName"))
existingEntity.setFirstName(ProfileEntity.get("firstName"));
if(ProfileEntity.containsKey("lastName"))
existingEntity.setLastName(ProfileEntity.get("lastName"));
if(ProfileEntity.containsKey("age"))
existingEntity.setAge(ProfileEntity.get("age")));
if(ProfileEntity.containsKey("mobile_Number"))
existingEntity.setMobileNumber(ProfileEntity.get("mobile_Number"));
super.save(existingEntity);
答案 2 :(得分:0)
I used spring BeanUtils for this.
public static String[] getNullPropertyNames(Object source) {
final BeanWrapper src = new BeanWrapperImpl(source);
java.beans.PropertyDescriptor[] pds = src.getPropertyDescriptors();
Set<String> emptyNames = new HashSet<String>();
for (java.beans.PropertyDescriptor pd : pds) {
Object srcValue = src.getPropertyValue(pd.getName());
if (srcValue == null) emptyNames.add(pd.getName());
}
String[] result = new String[emptyNames.size()];
return emptyNames.toArray(result);
}
public static void copyProperties(Object src, Object target) {
BeanUtils.copyProperties(src, target, getNullPropertyNames(src));
}
Then use your update like this
public Publisher update(@Named("id") Long id, Publisher publisher) throws Exception {
checkExists(id);
Publisher destination = get(id);
copyProperties(publisher, destination);
return insert(destination);
}
NOTE: This method will not overide null and list properties.