简体   繁体   中英

Post an entity with Spring Data REST which has relations

I'm using Spring Data Rest. I have a problem trying to POST an object with association(eg address is a field in my entity that is mapped as many to one).

The question is, what format should we use to connect our new entity with its relations. I saw several answers and tried all options that I found. Unfortunately, all of them don't work for me. The following error happens:

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

JSON that I tried:

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

Also tried these:

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

And this:

"address":{"id":1}

And even this:

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

Is there a way to do this, or only writing own implementation of controller for POST? Thanks!

If you have a model like this:

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

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

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

then you can POST a new User with its addresses like this:

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

Before POST a new User, addresses ID#1 and ID#2 must be already persisted.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM