spring-data-rest
spring-data-rest copied to clipboard
Simplifies building hypermedia-driven REST web services on top of Spring Data repositories
At line 100 of 3.6.2, the documentation says that we can use the "rel" attribute for the @RepositoryRestResource, which doesn't have it. I believe that it should just @RestResource there...
**[George T](https://jira.spring.io/secure/ViewProfile.jspa?name=tesseris)** opened **[DATAREST-687](https://jira.spring.io/browse/DATAREST-687?redirect=false)** and commented I am trying to override AppointmentRepository POST /appointments using a custom controller annotated with `@RepositoryRestController`. ```java @RepositoryRestResource(collectionResourceRel = "appointments", path = "appointments") public interface...
**[Mahsum Demir](https://jira.spring.io/secure/ViewProfile.jspa?name=mahsumdemir)** opened **[DATAREST-1237](https://jira.spring.io/browse/DATAREST-1237?redirect=false)** and commented Hi, When Spring Data Rest exposes a custom JpaRepository method with the return type of List\, GET requests to that method fails with the...
**[Say.li](https://jira.spring.io/secure/ViewProfile.jspa?name=120011676)** opened **[DATAREST-1454](https://jira.spring.io/browse/DATAREST-1454?redirect=false)** and commented application.yml spring: data: web: pageable: one-indexed-parameters: true requset: Pageable page 1 response: page.getNumber() page.getPageable().getPageNumber() 0 Expect: 1 --- **Affects:** 3.2.1 (Moore SR1) 1 votes, 2...
Hello I opened an issue I discovered using spring boot, and was redirected to this project as origin of the problem: https://github.com/spring-projects/spring-boot/issues/29644 As I explain in it, the CORS configuration...
**[Bob Tiernay](https://jira.spring.io/secure/ViewProfile.jspa?name=btiernay)** opened **[DATAREST-593](https://jira.spring.io/browse/DATAREST-593?redirect=false)** and commented `@Valid` annotations are not respected on `@RepositoryRestController` annotated controllers as they are with `@Controller` and `@RestController` classes. This breaks with convention and expectation of...
**[Joseph Valerio](https://jira.spring.io/secure/ViewProfile.jspa?name=jvalerio)** opened **[DATAREST-1573](https://jira.spring.io/browse/DATAREST-1573?redirect=false)** and commented We just upgraded to SpringBoot 2.3.2. We are using spring datarest 3.3.2 with JPA against a RDBMS We use a PATCH to update our...
**[huisezhiwei](https://jira.spring.io/secure/ViewProfile.jspa?name=JIRAUSER50370)** opened **[DATAREST-1566](https://jira.spring.io/browse/DATAREST-1566?redirect=false)** and commented I have a Dictionary entity bean contain fields like "dictCode" and "dictValue". then define a DTO class contain fields like "code" and "value" . finally...
I've been trying to represent a hierarchy of objects under a single entry point but Spring Data Rest does not represent a collection resource of instances under the same common...
I don't know if it by design, but projections do not (properly?) support generics. For example, if I have: ```java public interface GenericCollectionSummary { List getMembers(); } interface SpecialisedProjection extends...