Top "Spring-repositories" questions

This tag is for question related to the use of Spring Data repository abstraction APIs.

How to query LocalDateTime with LocalDate?

I've got a class which contains an atttribute of java.time.LocalDateTime type. public class MyClass{ // ... private LocalDateTime fecha; // ... } I'm …

java spring spring-data java-time spring-repositories
How to distinct counting with Spring JPA Repository

How do I do a distinct counting with Spring Data JPA? I do not want to use the @Query annotation. …

spring spring-boot spring-data-jpa spring-repositories
JpaRepository find User with Role in list of roles

I'm using Spring with Hibernate and JpaRepository as database repository. I have two classes for user storage: @Entity public class …

java spring hibernate spring-data-jpa spring-repositories