spring-data-rest
spring-data-rest copied to clipboard
Simplifies building hypermedia-driven REST web services on top of Spring Data repositories
Fixes the broken link to HAL Explorer in README.adoc. - [x] You have read the [Spring Data contribution guidelines](https://github.com/spring-projects/spring-data-build/blob/master/CONTRIBUTING.adoc). - [x] You use the code formatters provided [here](https://github.com/spring-projects/spring-data-build/tree/master/etc/ide) and have...
Hello. My problem is that I got response in HAL format for projections (Entity's are in JSON) using spring boot + data-rest. My project configuration include next params: ` spring:...
**[Oliver Drotbohm](https://jira.spring.io/secure/ViewProfile.jspa?name=olivergierke)** opened **[DATAREST-841](https://jira.spring.io/browse/DATAREST-841?redirect=false)** and commented Currently Spring Data REST does not support returning projections from query methods directly. The feature has been introduced for Spring Data JPA and MongoDB...
Here is my sample code https://github.com/cbot59/spring-data-many-to-one-examples I want to be able to POST my parent entity through my child entity, but it seems it doesn't work. Is there any code...
I'm trying to convert the result of a paged query to a `PagedModel` to generate the links automatically. Basically, the endpoint in the controller will return `ResponseEntity`, instead of returning...
POST to http://localhost:8080/users with the below JSON that have invalid field (Address, should not be a list) below name field works perfectly ``` { "name": "john3", "email": "[email protected]", "address": ["http://localhost:8080/addresses/1"]...
Hi, A strange behavior occurred when I tried to migrate an older springboot project. I received the following error message: > class org.springframework.http.converter.json.MappingJacksonValue cannot be cast to class org.springframework.hateoas.RepresentationModel (org.springframework.http.converter.json.MappingJacksonValue...
**[Christopher Klein](https://jira.spring.io/secure/ViewProfile.jspa?name=schakko)** opened **[DATAREST-428](https://jira.spring.io/browse/DATAREST-428?redirect=false)** and commented Like [DATAREST-221](https://jira.spring.io/browse/DATAREST-221) this issue should start a discussion about field level security. In the first place I wanted to ask a question on Stackoverflow...
Hi, Is it possible to disable `ResourceNotFoundException` throwing in `RepositoryEntityController#getItemResource`? I want to produce JSON like _`content: []`_ instead of 500 HTTP status in case when specific entity by id...
- [x] You have read the [Spring Data contribution guidelines](https://github.com/spring-projects/spring-data-build/blob/master/CONTRIBUTING.adoc). - [x] You use the code formatters provided [here](https://github.com/spring-projects/spring-data-build/tree/master/etc/ide) and have them applied to your changes. Don’t submit any formatting...