spring-data-rest icon indicating copy to clipboard operation
spring-data-rest copied to clipboard

Simplifies building hypermedia-driven REST web services on top of Spring Data repositories

Results 198 spring-data-rest issues
Sort by recently updated
recently updated
newest added

Updated the [method signature in customizing-sdr.adoc](https://github.com/spring-projects/spring-data-rest/blob/4.5.x/src/main/antora/modules/ROOT/pages/customizing-sdr.adoc#customizing-item-resource-uris) for accuracy. The correct signature is: [configureRepositoryRestConfiguration(RepositoryRestConfiguration config, CorsRegistry cors)](https://docs.spring.io/spring-data/rest/docs/4.5.0/api/org/springframework/data/rest/webmvc/config/RepositoryRestConfigurer.html#configureRepositoryRestConfiguration(org.springframework.data.rest.core.config.RepositoryRestConfiguration,org.springframework.web.servlet.config.annotation.CorsRegistry)).

type: documentation

`configureJacksonObjectMapper` cannot be `protected` because it overrides a `public` method from the [RepositoryRestConfigurer](https://docs.spring.io/spring-data/rest/docs/4.5.0/api/org/springframework/data/rest/webmvc/config/RepositoryRestConfigurer.html) interface.

type: documentation

https://github.com/FasterXML/jackson/wiki/Jackson-Release-3.0 Related to: spring-projects/spring-data-commons#3292 Due to the amount of breaking changes the upgrade will have a broader impact.

type: enhancement
type: dependency-upgrade

According to https://docs.spring.io/spring-data/rest/reference/customizing/configuring-the-rest-url-path.html#customizing-sdr.hiding-repositories >You may not want a certain repository, a query method on a repository, or a field of your entity to be exported at all. Examples include hiding...

status: waiting-for-triage

Change `compile` to `implementation` to reflect newer Gradle versions

type: documentation

eg: ``` curl http://localhost:8080/people { "_embedded" : { "people" : [] }, "_links" : { "self" : { "href" : "http://localhost:8080/people{?page,size,sort}", "templated" : true }, "search" : { "href" :...

status: waiting-for-triage

if you are using disableDefaultExposure just if you add ListPagingAndSortingRepository as interface of your repository (together with ListCrudRepository or not) it breaks all rest visibility of annotated methods ``` @RepositoryRestResource...

status: waiting-for-triage