spring-data-rest 集成测试因简单的 json 请求而失败
2022-09-01 21:17:05
我的 spring-data-rest 集成测试对于一个简单的 json 请求失败。考虑以下 jpa 模型
订购.java
public class Order {
@Id @GeneratedValue//
private Long id;
@ManyToOne(fetch = FetchType.LAZY)//
private Person creator;
private String type;
public Order(Person creator) {
this.creator = creator;
}
// getters and setters
}
人.java
ic class Person {
@Id @GeneratedValue private Long id;
@Description("A person's first name") //
private String firstName;
@Description("A person's last name") //
private String lastName;
@Description("A person's siblings") //
@ManyToMany //
private List<Person> siblings = new ArrayList<Person>();
@ManyToOne //
private Person father;
@Description("Timestamp this person object was created") //
private Date created;
@JsonIgnore //
private int age;
private int height, weight;
private Gender gender;
// ... getters and setters
}
在我的测试中,我通过使用personRepository创建了一个人,并通过了人来初始化订单
Person creator = new Person();
creator.setFirstName("Joe");
creator.setLastName("Keith");
created.setCreated(new Date());
created.setAge("30");
creator = personRepository.save(creator);
Order order = new Order(creator);
String orderJson = new ObjectMapper().writeValueAsString(order);
mockMvc.perform(post("/orders").content(orderJson).andDoPrint());
订单已创建,但创建者未与订单关联。另外,我想将请求正文作为 json 对象传递。在此,我的 json 对象应包含如下创建者
{
"type": "1",
"creator": {
"id": 1,
"firstName": "Joe",
"lastName": "Keith",
"age": 30
}
}
如果我使用以下 json 发送请求正文,则调用工作正常
{
"type": "1",
"creator": "http://localhost/people/1"
}
但我不想发送第二个json。任何想法如何解决问题。因为我的客户端已经通过发送第一个json来消耗服务器响应。现在,我迁移了我的服务器以使用 spring-data-rest。之后,我的所有客户端代码都不起作用。
如何解决这个问题?