spring-data-rest
spring-data-rest copied to clipboard
Simplifies building hypermedia-driven REST web services on top of Spring Data repositories
**[Oliver Drotbohm](https://jira.spring.io/secure/ViewProfile.jspa?name=olivergierke)** opened **[DATAREST-744](https://jira.spring.io/browse/DATAREST-744?redirect=false)** and commented --- 1 votes, 2 watchers
If I define a hierarchy of entities, and a polymorphic repository only for the root entity, descendants of the root entity are included under the management of the polymorphic repository...
Fixes #2165 - [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...
**[Chris Beams](https://jira.spring.io/secure/ViewProfile.jspa?name=cbeams)** opened **[DATAREST-608](https://jira.spring.io/browse/DATAREST-608?redirect=false)** and commented Given entities Person and Posession, where Person has a collection of Possessions and both entities are exposed via SD REST repositories respectively, I would...
Fix #2087 Add a field "path/value" on the annotation @RepositoryRestController to be able to set a root path at class level.
On latest version @RequestMapping isn't more allowed at class level due to this change => https://github.com/spring-projects/spring-data-rest/commit/46dc6e03fcd13cadfafeab22ba813c12a8dc9688 @RequestMapping is now only allowed on method level but that isn't an valid option...
RepositoryRestController does not accept sorting for fields which it does not understand. In previous versions of Spring even if a field didn't exist in the model which is being exposed...
Currently, the HAL explorer is under the root path, but this will collide with web applications. Please make the path adjustable via a configuration property like spring.data.rest.hal-explorer-base-path=/api
Hello! I tried using spring-data-rest in a native image. The native image doesn't start, it fails with this exception: https://ge.spring.io/s/a66xyypotax3k/tests/:data-rest-mongodb:nativeAotTest/com.example.data.rest.mongodb.DataRestMongoDbApplicationAotTests/initializationError?top-execution=1 Main cause is: ``` Caused by: com.oracle.svm.core.jdk.UnsupportedFeatureError: Proxy class defined...
# Minimal reproduction example Given a simple project with a JPA entity having a relation to an other JPA entity, both with exported repositories. Normally, when creating and updating (POST/PUT)...