Chciałem przedłużyć przykład Accessing JPA Data with REST, dodając listę adresów do encji Person
. Więc dodałem listę addresses
z @OneToMany
adnotacji:Spring JPA REST One to Many
@Entity
public class Person {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private long id;
private String firstName;
private String lastName;
@OneToMany(fetch = FetchType.EAGER, cascade = CascadeType.ALL)
private List<Address> addresses = new ArrayList<>();
// get and set methods...
}
Klasa Address
jest bardzo prosta:
@Entity
public class Address {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private long id;
private String street;
private String number;
// get and set methods...
}
I wreszcie dodałem interfejs AddressRepository
:
public interface AddressRepository extends PagingAndSortingRepository<Address, Long> {}
Następnie Próbowałem POST osoby z niektórymi adresami:
curl -i -X POST -H "Content-Type:application/json" -d '{ "firstName" : "Frodo", "lastName" : "Baggins", "addresses": [{"street": "somewhere", "number": 1},{"street": "anywhere", "number": 0}]}' http://localhost:8080/people
Błąd pojawia się:
Could not read document: Failed to convert from type [java.net.URI] to type [ws.model.Address] for value 'street';
nested exception is java.lang.IllegalArgumentException: Cannot resolve URI street. Is it local or remote? Only local URIs are resolvable. (through reference chain: ws.model.Person[\"addresses\"]->java.util.ArrayList[1]);
nested exception is com.fasterxml.jackson.databind.JsonMappingException: Failed to convert from type [java.net.URI] to type [ws.model.Address] for value 'street'; nested exception is java.lang.IllegalArgumentException: Cannot resolve URI street. Is it local or remote? Only local URIs are resolvable. (through reference chain: ws.model.Person[\"addresses\"]->java.util.ArrayList[1])
Która jest właściwa metoda, aby utworzyć jeden do wielu i wiele do wielu relacji i obiektów po json do nich?
Pokazywałeś nam klasy jednostek dla swojej ORM, ale nie pokazałeś nam niczego, co jest przypisane do REST. – scottb
Zobacz tę odpowiedź sugerującą użycie niestandardowego konwertera http://stackoverflow.com/questions/24781516/spring-data-rest-field-converter – dseibert
@scottb Używam adnotacji '@ RepositoryRestResource', tak jak w samouczku dla obu repozytoriów (Osoba, adres). Tworzy to wspólne punkty końcowe REST dla encji. –