Posts tagged with Hibernate

Featured image for "New way to map enums with Spring Boot 4 and Hibernate 7"
Java

New way to map enums with Spring Boot 4 and Hibernate 7

Custom enum mappings in your entities became a lot easier in Spring Boot 4 thanks to some changes within Hibernate 7 and JPA 3.2. Check out this blogpost to learn more!

Read more →
Featured image for "Writing dynamic queries with Spring Data JPA"
Java

Writing dynamic queries with Spring Data JPA

With Spring Data, we can easily write queries usinng @Query. For more dynamic queries, we can use the Example and Specification API, which we'll explore here.

Read more →