Questions tagged [spring-data-rest]

Spring Data REST (SDR) is a specialized Spring Data initiative designed to simplify the process of transforming Spring Data repositories into RESTful services. SDR leverages Spring HATEOAS under the hood to generate HAL responses efficiently.

There seems to be a caching issue in ReactJS and Spring Data Rest that could be causing problems with

Encountering an unusual caching problem here. Just recently wiped out my database. While adding new users to the system, an old user mysteriously reappeared. This user has not been recreated and is not in the current database whatsoever. I'm at a lo ...

After transitioning an application to Spring Boot and implementing Spring Data Rest, I noticed that entity properties annotated with @Id are no longer included in the JSON marshalling process

Looking for some help regarding an issue related to a specific question on Stack Overflow (Spring boot @ResponseBody doesn't serialize entity id). I recently migrated my application to Spring Boot and started using the spring-boot-starter-data-rest de ...

The request method 'PUT' is not currently supported

Currently, I am working on a project that involves springboot, angularjs, and restful services. Here is my REST controller: @RequestMapping(value="/updatestructure/{ch}", method = RequestMethod.PUT) public @ResponseBody Structurenotification updateStruct ...