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

Encoded password does not look like BCrypt

I am using Spring Boot, Spring Security, OAuth2 and JWT to authenticate my application, but I keep getting this nasty …

java spring spring-boot spring-data-jpa
How to use Spring managed Hibernate interceptors in Spring Boot?

Is it possible to integrate Spring managed Hibernate interceptors (http://docs.jboss.org/hibernate/orm/4.3/manual/en-US/html/ch14.html) …

hibernate spring-data spring-data-jpa spring-boot spring-data-rest
How to set hibernate.format_sql in spring-boot?

I'm using spring-boot autoconfiguration for database injection, with properties defined: spring.jpa.database=POSTGRESQL spring.jpa.show-sql=true spring.jpa.…

java spring spring-boot spring-data-jpa
Spring-Data JPA: save new entity referencing existing one

The question is basically the same as below one: JPA cascade persist and references to detached entities throws PersistentObjectException. Why? …

java merge spring-data spring-data-jpa persist
Handling soft-deletes with Spring JPA

I have a table Stuff defined as... id, <fields>..., active Active is the soft-delete flag and is always 1 …

java spring jpa spring-data spring-data-jpa
updating boolean value in spring data jpa using @Query, with hibernate

I have spring-data and hibernate configured and running. I can save records using spring-data but for some reason I am …

hibernate spring-data spring-data-jpa
Spring Data JPA And NamedEntityGraphs

currently I am wrestling with being able to fetch only the data I need. The findAll() method needs to fetch …

jpa fetch spring-data-jpa entitygraph
No property found for type error when try to create custom repository with Spring Data JPA

I have a Media entity that has some basic fields for files uploaded by the user. For saving the bytes …

java spring repository spring-data-jpa
Spring Data JPA Unable to locate Attribute with the given name

I was trying to use Spring Data JPA on Spring Boot and I kept getting error, I can't figure out …

java spring-boot spring-data-jpa h2