gpt4 book ai didi

java - 外键对 POST 的结果不起作用,但 GET 有效

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

我在 Spring 中使用外键时遇到问题。返回的对象在我的关系中没有正确的值。

在 CREATED 响应中,OrderorderTypeId 缺失,但后续 GET 请求会产生预期结果。

预期行为

这是我想要实现的目标的一个小例子。

请求

POST /api/orders
{
"orderType": "orderTypes/1",
}

GET/api/orders/2

输出

{
"id": 2,
"orderTypeId": 1, // either this
"orderType": "orderTypes/1" // or this
"_links": {
"self": {
"href": "http://localhost:8090/api/orders/2"
},
"order": {
"href": "http://localhost:8090/api/orders/2"
},
"orderType": {
"href": "http://localhost:8090/api/orders/2/orderType"
},
"orderType": {
"href": "orderTypes/1" // this could even be acceptable
}
}
}

我的代码

实体

@Data
@Entity
public class Order {
@Id
@GeneratedValue
private Long id;

@Column(name = "order_type_id", nullable = false, insertable = false, updatable = false)
private Long orderTypeId;

@NotNull
@ManyToOne
@JoinColumn(name = "order_type_id")
private OrderType orderType;
}

@Data
@Entity
public class OrderType {
@Id
@GeneratedValue
private Long id;

@Column(nullable = false)
private String name;

@JsonIgnore
@OneToMany(mappedBy = "orderType")
private List<Order> orders;
}

Controller

@RepositoryRestResource
public interface OrderRepository extends JpaRepository<Order, Long> {}

发布

POST /api/orders
{
"orderType": "orderTypes/1",
}

输出

{
"id": 2,
"orderTypeId": null,
"_links": {
"self": {
"href": "http://localhost:8090/api/orders/2"
},
"order": {
"href": "http://localhost:8090/api/orders/2"
},
"orderType": {
"href": "http://localhost:8090/api/orders/2/orderType"
}
}
}

但是,如果我执行 GET/orders/2 orderTypeId 则设置正确。

我做错了什么?

<小时/>

更新

我尝试了其他方法

@Data
@Entity
public class Order {
@Id
@GeneratedValue
private Long id;

@NotNull
@ManyToOne
@JoinColumn
@JsonManagedReference
@RestResource(exported=false) // ADDED
private OrderType orderType;
}

@Data
@Entity
public class OrderType {
@Id
@GeneratedValue
private Long id;

@Column(nullable = false)
private String name;

// removed orders
}

获取/api/orders/2

{
"id": 2,
"orderTypeId": {
"id": 1,
"name": "foo"
},
"_links": {
"self": {
"href": "http://localhost:8090/api/orders/2"
},
"order": {
"href": "http://localhost:8090/api/orders/2"
}
}
}

但是现在 POST 不起作用:(

POST /api/orders
{
"orderType": "orderTypes/1",
}

返回 400 错误请求...

最佳答案

不推荐使用@JsonIgnore,要管理循环依赖,请在实体中使用@JsonManagedReference实体:

@Data
@Entity
public class Order {
@Id
@GeneratedValue
private Long id;

@Column(name = "order_type_id", nullable = false, insertable = false, updatable = false)
private Long orderTypeId;

@JsonBackReference(value="name")
@ManyToOne
@JoinColumn(name = "order_type_id")
private OrderType orderType;
}


@Data
@Entity
public class OrderType {
@Id
@GeneratedValue
private Long id;

@Column(nullable = false)
private String name;

@JsonManagedReference(value = "name")
@OneToMany(mappedBy = "orderType")
private List<Order> orders;
}

现在回答你的问题,post API 的返回不会返回 OrderType,因为 Hibernate 不会将其识别为初始化实体。您可以稍后执行 GET 调用,就像您的案例中已经发生的那样,或者在保存后在 POST api 中使用休息 Controller ,您可以在返回之前通过 id 执行 get 调用,或者使用 DTO 发送响应。

关于java - 外键对 POST 的结果不起作用,但 GET 有效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50800624/

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