I am following the spring-data-rest guide Accessing JPA Data with REST. When I http post a new record it is inserted (and the response is a 201). That is great, but is there a w
If you are using Spring Boot, you can add the following lines to your application.properties file for POST (create) and PUT (update) respectively
application.properties
POST
PUT
spring.data.rest.return-body-on-create=true spring.data.rest.return-body-on-update=true