gpt4 book ai didi

java - Spring/JPA 中的实体更新选项

转载 作者:行者123 更新时间:2023-11-28 23:16:01 25 4
gpt4 key购买 nike

我有一个 Vehicle 实体,它有很多属性(大约 30 多个属性)。

我试图了解更新具有大量字段属性的实体的最佳方法是什么。

例如,如果必须使用新值更新特定对象(即数据库中的表行),那么可能的选项是什么?

@Entity
public class Vehicle {

@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@Column(name = "vehicle_id", updatable = false, nullable = false)
private Long vehicleId;
private String vehicleName;
private String makeYear;
private String makeLocation;
private String Brand;
//**20 such other attributes**

@ManyToOne(nullable=false)
private Warehouse warehouse;
//owner of the relationship

@OneToMany(mappedBy = "vehicle", fetch = FetchType.LAZY)
private Customer customers;

//other such @OneToMany attributes

}

选项 1 是

public void updateVehicle(Vehicle vehicle){
vehicle_existing = vehicleRepo.findOne(vehicle.getVehicleId());
vehicle_existing = vehicleRepo.save(bid);
}

但是如果传入的车辆对象在 json 中没有该特定字段,这会导致 vehicle_existing 的某些字段被覆盖为 null/empty

选项 2 是有防御加法器,如果 bean 不为空,则添加每个特定值,如下所示

public void addVehicleValues(Vehicle vehicle, Vehicle vehicle_existing){
if (vehicle.vehicleId !=null && !vehicle.vehicleId.isEmpty()){
//add the vehicleId to the existing vehicle ID in DB
vehicle_existing.vehicleId = vehicle.vehicleId;
}
** and so on for other fields ...including the @OneToMany associations
}

这看起来乏味且不优雅,但可以工作,因为想法是仅添加非空和非空字段,这就是它的作用。

选项 3 我想到的是 DTO,但我不确定这是否是正确的前进方向。

鉴于这些选项,更新具有大量字段的实体的一般做法是什么?我正在使用 SpringJPA,但我认为这是一个常见的用例。

最佳答案

我正在使用这个类:

public class NullAwareBeanUtil {
private static String[] getNullPropertyNames(Object source) {
final BeanWrapper src = new BeanWrapperImpl(source);
java.beans.PropertyDescriptor[] pds = src.getPropertyDescriptors();

Set<String> emptyNames = new HashSet<>();
for (java.beans.PropertyDescriptor pd : pds) {
Object srcValue = src.getPropertyValue(pd.getName());
if (srcValue == null || srcValue instanceof Set<?> || srcValue instanceof List<?>) {
emptyNames.add(pd.getName());
}
}
String[] result = new String[emptyNames.size()];
return emptyNames.toArray(result);
}

// then use Spring BeanUtils to copy and ignore null
public static void copyProperties(Object src, Object target) {
BeanUtils.copyProperties(src, target, getNullPropertyNames(src));
}
}

在服务类中,“产品”是包含要修改的属性的对象:

Product productToUpdate = findOne(product.getId());

NullAwareBeanUtil.copyProperties(product, productToUpdate);

Product updatedProduct = save(productToUpdate);

关于java - Spring/JPA 中的实体更新选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43842369/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com