Spring Data JPA
Spring Data JPA provides a more cleaner approach of using JPA for DAO layer. It removes boilerplate code and developers…
Spring Data JPA provides a more cleaner approach of using JPA for DAO layer. It removes boilerplate code and developers…
Earlier we worked directly with Lucene API to create and search index Index and Search a Directory using Apache Lucene Create…
In earlier post we had OneToMany uni-directional mapping with the help of JoinTable. In this post we will see how…
In earlier post we had OneToMany bi-directional mapping. In this post we will see how can we make it unidirectional…
Every now and then we come across a common requirement of building an Audit framework. In simple words it means…
I was asked once in an interview How will you check the different status of thread ? The question was…
OneToMany as name suggest is the scenario where one entity can be linked to multiple entities. For e.g. one BookShelf…
In the last post we saw how to define OnetoOne mapping using JPA but it was unidirectional, which means when…
In this tutorial we will explore how to map two entities. Say we have two entity Employee and Address, every…
Use Case: Override attributes defined in another entity. We want to specify column mapping the main entity and not in…