Deserialize JSON containing (_links and _embedded) using spring-hateoas
问题 I am trying to invoque very simple json webservices that return data of this form: { "_embedded": { "users": [{ "identifier": "1", "firstName": "John", "lastName": "Doe", "_links": { "self": { "href": "http://localhost:8080/test/users/1" } } }, { "identifier": "2", "firstName": "Paul", "lastName": "Smith", "_links": { "self": { "href": "http://localhost:8080/test/users/2" } } }] }, "_links": { "self": { "href": "http://localhost:8080/test/users" } }, "page": { "size": 20, "totalElements": 2,