Alessandro Nistico
Alessandro Nistico
When creating a DateTime using the fromObject() factory method, the current implementation tries to normalize and use all own properties of the instance passed in as parameter, and if the...
This problem happens using springboot 2.4.5. Using Page as return type for a query method with a custom query, even a simple and plain query, causes an error creating the...
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...
If an entity does not have a (direct) repository and it has a bidirectional parent-child relationship with an entity which has a repository then, if we @JsonManagedReference and @JsonBackReference on...
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...
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...
Sometimes is necessary to use a method other than POST when uploading a file to a server, according to its implementation of the upload handling. I would like to propose...