gpt4 book ai didi

java - 传递的分离实体与 LatLng 列表一起保存

转载 作者:行者123 更新时间:2023-12-02 09:18:18 25 4
gpt4 key购买 nike

使用同一列表保存两个对象时出现错误:而且我不太了解每个类的 CascadeType 和 GenerationType。

Caused by: org.hibernate.PersistentObjectException: detached entity passed to persist: LatLng

测试:

@Test
void testGetGeoArea() throws Exception {

GeoArea geoArea = new GeoArea();
GeoArea geoArea2 = new GeoArea();

List<LatLng> shape = Arrays.asList(
new LatLng(1,1),
new LatLng(2,2),
new LatLng(3,3));

geoArea.setShape(shape);
geoArea2.setShape(shape);

geoAreaService.create(geoArea);
geoAreaService.create(geoArea2);

实体:

@Table(
uniqueConstraints=
@UniqueConstraint(columnNames={"LATITUDE", "LONGITUDE"})
)
@Entity
public class LatLng implements Serializable {

@Id
@Column(name="LATLNG_ID")
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;

@Column(name="LATITUDE")
private double latitude;

@Column(name="LONGITUDE")
private double longitude;


@Entity
@Table(name = "GEO_AREA")
public class GeoArea implements GeoData {

@Id
@GeneratedValue(strategy= GenerationType.AUTO)
@Column(name="AREA_ID")
private Long id;

@Column(name="NAME")
private String name;

@OneToMany(cascade = CascadeType.PERSIST)
private List<LatLng> shape;

创建实体的服务:

 @Override
public GeoArea create(GeoArea geoArea) {

geoArea.setShape(geoArea.getShape().stream()
.map(p -> {
LatLng persisted = latLngRepository.findByCoordinates(p.getLatitude(), p.getLongitude());
if(persisted != null){
return persisted;
}
return p;
})
.collect(Collectors.toList()));

return geoAreaRepository.save(geoArea);
}

如果你有任何想法:)

谢谢:)

最佳答案

很可能 GeoAreaService#create 方法未在事务内运行,因此 latLngRepository 返回的 LatLng 对象已分离。尝试通过添加 @Transactional 注释 ( https://docs.spring.io/spring/docs/5.2.0.RELEASE/spring-framework-reference/data-access.html#transaction-declarative ) 使该方法具有事务性。

此外,由于同一个 LatLng 对象可能属于多个 GeoArea 对象,因此关系应该是 @ManyToMany 而不是 @一对多

关于java - 传递的分离实体与 LatLng 列表一起保存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58856929/

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