Spring Rest POST Json RequestBody Content type not supported

后端 未结 14 1717
粉色の甜心
粉色の甜心 2020-12-05 05:58

When I try to post new object with post method. RequestBody could not recognize contentType. Spring is already configured and POST could work with others objects, but not th

14条回答
  •  孤街浪徒
    2020-12-05 06:41

    I had the same issue when I used this as a foreign key.

    @JsonBackReference
    @ManyToOne(cascade = {CascadeType.PERSIST, CascadeType.DETACH},fetch = FetchType.EAGER)
    @JoinColumn(name = "user_id")
    private User user;
    

    Then I removed @JsonBackReference annotation. After that above issue was fixed.

提交回复
热议问题