使用具有关系的Spring Data REST发布实体

时间:2017-06-12 10:23:39

标签: java spring hibernate spring-data-rest

我正在使用Spring Data Rest。尝试使用关联POST对象时遇到问题(例如,地址是我的实体中的一个字段,映射为多个对象)。

问题是,我们应该使用什么格式将新实体与其关系联系起来。我看到了几个答案并尝试了我找到的所有选项。不幸的是,他们都不适合我。 发生以下错误:

Caused by: org.h2.jdbc.JdbcSQLException: NULL not allowed for column "ADDRESS_ID"; SQL statement:

我试过的JSON:

{
"name": "test",
"email": "test@email",
"address": "http://localhost:8080/MyApp/address/1"
}

还试过这些:

"address": {"id":"http://localhost:8080/MyApp/address/1"}

而且:

"address":{"id":1}

即便如此:

"address": {
"href": "http://localhost:8080/MyApp/address/1"
}

有没有办法做到这一点,或者只为POST编写自己的控制器实现?谢谢!

1 个答案:

答案 0 :(得分:9)

如果您有这样的模型:

@Entity
public class User {
    //..
    private String name;

    @OneToMany(mappedBy = "user")
    private Set<Address> addresses = new HashSet<>();
    //..
}

@Entity
public class Address {
    //..
    @ManyToOne
    private User user;
    //..
}

然后你可以发布一个新的User addresses,如下所示:

POST http://localhost:8080/api/users
{
    "name" : "user1",
    "addresses" : [
        "http://localhost:8080/api/addresses/1",
        "http://localhost:8080/api/addresses/2"
        ]
}

在POST新用户之前,地址ID#1和ID#2必须已经保留。