André Felipe Costa Bentobentodev.hashnode.dev·Aug 6, 2024Exploring Spring Data: An In-Depth GuideIntroduction to Spring Data Spring Data is a part of the larger Spring Framework that simplifies the interaction with databases. It provides a consistent, Spring-based programming model for data access, while still retaining the special traits of the...Java
Venkata Thanoojthanooj.hashnode.dev·Mar 1, 2024Understanding Spring Data JPA: A Beginner's GuideSpring Data JPA is part of the larger Spring Data family which aims to simplify data access within the Spring application framework. It allows for the easy implementation of JPA based repositories. This abstraction layer allows for accessing and mani...Spring Data Jpa
Beau CarnesforfreeCodeCampfreecodecamp.org·Feb 6, 2024Learn Spring Boot and Spring Data JPABy mastering Spring Boot and Spring Data JPA, you'll be equipped to build efficient, scalable, and secure applications with ease, making you a valuable asset in the job market and a more effective developer. We just published a comprehensive video co...spring-boot
Biagio Tozzibiagiotozzi.hashnode.dev·Jan 29, 2024Advanced and dynamic searching with Spring Data JPAI have often been asked to develop advanced search services. By advanced search I mean searches in which it’s possible to apply multiple filters on all (or almost all) fields such as: like, between, in, greater than, etc. So imagine having to build a...2 likes·97 readsJava
Joseph Ganbwgjoseph.com·Nov 2, 2022Default mapping behavior for Spring Data MongoDBIf you have used Spring Data MongoDB, have you ever thought of what exactly is the default mapping behavior from MongoDB Document to Java POJO? What do I mean by that? Imagine you have the following Java POJO @Getter @Builder @ToString @TypeAlias("pe...2.2K readsJava
Dmytro Hdhasilin.hashnode.dev·Jun 11, 2022@RedisHash with TTL (spring-data)Long story short: it's not working yet :) So what is wrong? An open issue was opened in 2016. (Actually, a workaround was added in September 2021 to clean up on the application startup) What effects you might get: findAll returns null values pages ...56 readsJava
freeCodeCampforfreeCodeCampfreecodecamp.org·Feb 16, 2019An introduction to Reactive Relational Database Access with Spring and R2DBCBy Daniel Newton Not too long ago, a reactive variant of the JDBC driver was released, known as R2DBC. It allows data to be streamed asynchronously to any endpoints that have subscribed to it. Using a reactive driver like R2DBC together with Spring, ...Java
Rogerio Angeliskiangeliski.com.br·Feb 15, 2017Mapeando views com Hibernate no spring-dataUm framework sensacional que existe para persistência de dados é o Hibernate. Ele simplifica uma série de operações através da sua abstração, permitindo que você realize interações com o banco sem necessariamente escrever SQL. Mas o assunto não é sob...1.0K readshibernate