gpt4 book ai didi

java - 对象引用未保存的 transient 实例 - 在使用 hibernate 空间刷新之前保存 transient 实例

转载 作者:行者123 更新时间:2023-12-02 03:38:22 28 4
gpt4 key购买 nike

我正在尝试执行此查询:

StringBuffer sb = new StringBuffer();
sb.append("select p from PointsEntity p " + "where within(p.coordinates,:polygon) = true");

但我有一个异常(exception):

org.hibernate.TransientObjectException: object references an unsaved transient instance - save the transient instance before flushing: com.gisapp.springboot.backend.apirest.models.entity.PolygonEntity

这是 PolygonEntity:

@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;

@Column(name = "user_id")
private Long userId;

@Column(name = "user_email")
private String userEmail;

@Column(name = "point_name")
private String pointName;

@Column(name = "coordinates")
private Polygon coordinates;

我已经阅读了一个可能的解决方案here但观察实体,该解决方案已在包含多边形集合的 UserEntity 中实现:

@OneToMany(fetch = FetchType.LAZY, cascade = CascadeType.ALL)
@JoinColumn(name = "user_id")
private List<PointsEntity> pointsList;

@OneToMany(fetch = FetchType.LAZY, cascade = CascadeType.ALL)
@JoinColumn(name = "user_id")
private List<PolygonEntity> polygonsList;

为什么我会遇到这个异常?

最佳答案

最后我用了另一种方式来使用within方法。

我创建了一个时态表和一个实体来保存多边形,稍后我执行此查询:

StringBuffer sb = new StringBuffer();
sb.append("select p from PointsEntity p, TempPolygonEntity t "
+ "where within(p.coordinates, t.coordinates) = true");

多边形会被保存,并在使用后被删除。

关于java - 对象引用未保存的 transient 实例 - 在使用 hibernate 空间刷新之前保存 transient 实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56849006/

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