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…
In our last excercise we created Lucene index in database using JdbcDirectory which comes with Compass in this post we…
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…
In our last post we built a simple index over file system. While our example works fine but cannot be…
In two steps we will integrate Apache Lucene and Maven in Eclipse. First Create Java Project using Maven in Eclipse Second…
Building a custom search is a common requirement in almost every application. Building such a system can be complex and…
Every now and then we come across a common requirement of building an Audit framework. In simple words it means…
OneToMany as name suggest is the scenario where one entity can be linked to multiple entities. For e.g. one BookShelf…