Top "Spring-data-jpa" questions

Spring Data - JPA is part of the Spring Data umbrella project which makes it easy to implement JPA based repositories

Autowiring fails: Not an managed Type

I have a big problem in my diploma project and would be very glad if you guys could help me! …

java spring spring-mvc spring-data-jpa hessian
How to add custom method to Spring Data JPA

I am looking into Spring Data JPA. Consider the below example where I will get all the crud and finder …

java spring-data spring-data-jpa
setMaxResults for Spring-Data-JPA annotation?

I am trying to incorporate Spring-Data-JPA into my project. One thing that confuses me is how do I achieve setMaxResults(…

java spring jpa spring-data spring-data-jpa
How to test Spring Data repositories?

I want a repository (say, UserRepository) created with the help of Spring Data. I am new to spring-data (but not …

unit-testing jpa spring-data-jpa spring-data
Spring Data: "delete by" is supported?

I am using Spring JPA for database access. I am able to find examples such as findByName and countByName, for …

spring spring-data spring-data-jpa
Can't Autowire @Repository annotated interface in Spring Boot

I'm developing a spring boot application and I'm running into an issue here. I'm trying to inject a @Repository annotated …

spring spring-boot spring-data repository spring-data-jpa
How to beautifully update a JPA entity in Spring Data?

So I have looked at various tutorials about JPA with Spring Data and this has been done different on many …

java spring jpa spring-data spring-data-jpa
Disable all Database related auto configuration in Spring Boot

I am using Spring Boot to develop two applications, one serves as the server and other one is a client …

spring hibernate spring-boot spring-data spring-data-jpa
%Like% Query in spring JpaRepository

I would like to write a like query in JpaRepository but it is not returning anything : LIKE '%place%'-its …

java jpa spring-data-jpa
Check date between two other dates spring data jpa

I have this model: public class Event { private String name; private Date start; private Date end; } and repository as @Repository …

java spring spring-data-jpa spring-repositories