PostgreSQL’s Full Text Search With Hibernate

Full Text Search Config

Full Text Search (FTS) is a great mechanism that can be used to search the database against a search term. FTS can produce better results than conventional ways of querying, when used efficiently. The PostgreSQL database has inbuilt library for FTS and provides various functions to make use of it. There is a special data … Read more

External Pagination & Sorting With DisplayTag

DisplayTag-JSP

We often come across the need to display data of any web application in a tabular form to the end user. There are several ways to do this using different kind of technologies for e.g. Jquery’s JQGrid etc. One such technology in JSP is to use the DisplayTag library. External pagination is when the data … Read more