Author Archives: Neetesh Kadam
Configuring Unicode support in Spring + Hibernate + MySQL + JSP Application
In this blog I will show you how I have configured Unicode in Spring Hibernate and MySQL project where we are using JSP for the client side.
First the data source bean configuration needs to be modified as follows:
<bean … Read More
Hibernate Performance Optimization (Part – 2)
Hibernate collection can be eager or lazy fetched which decides whether to initialize association immediately or to defer its initialization till the collection is accessed. Hibernate provides different options (fetching strategies) which decides the queries which hibernate generates to load … Read More
Hibernate Performance Optimization (Part – 1)
To work effectively with hibernate you need to understand how hibernate executes queries. You can get the work done by using various alternative APIs which hibernate provides, but selection of correct API is needed for performance optimization. In this post … Read More
About Apache Solr
Introduction:
Text searching is one of the key implicit requirements of most of the web applications. Text searching has lot more to do than just searching the database with %searchText% type query. If your web application holds lot of text … Read More
