Viral Patel

Java Singleton design pattern tutorial.

Java Singleton design pattern tutorial.

Java Singleton design pattern is one of the design pattern that governs the instantiation of an object in Java. This design pattern suggest that only one instance of a Singleton object is created by...

Playing with JVM / Java Heap Size.

Playing with JVM / Java Heap Size.

Java programs executes in JVM uses Heap of memory to manage the data. If your Java program requires a large amount of memory, it is possible that the virtual machine will begin to throw...

Java Servlet Filter tutorial example using Eclipse & Tomcat

Java Servlet Filter tutorial example using Eclipse & Tomcat

[ad name=”AD_INBETWEEN_POST”]Servlet Filters are the latest components that are added in Servlet 2.3 specifications. These filters are used basically for intercepting and modifying requests and response from server.  Consider a scenario where you want...

Top 10 biggest Tech stories of 2008

Top 10 biggest Tech stories of 2008

In the year 2008 Tech industry has seen lot of ups and downs. Starting from Microsoft proposed acquisition of Yahoo to launching of Apple’s iPhone; Tech world has seen lots of new things in...

Tutorial: Create JSP custom tag library

Tutorial: Create JSP custom tag library

A Custom tag is a user defined JSP language element. When a JSP page containing custom tag is translated into a Servlet, the tag is converted to operations on an object called tag handler....