Author: krishna

java.util

Collection vs List vs Map vs Set Collection List Map Set Duplicate Elements Duplicate Elements No Duplicate Keys No Duplicate Elements Extends Collection Each key can map to 1 value Extends Collection HashMap vs HashTable vs HashSet vs TreeSet vs TreeMap HashMap HashTable HashSet TreeSet TreeMap Implements Map Implements Map Implements Set Implements SortedSet Implements…

Read More

java.thread

Definition A thread is a single sequential flow of control within a program. Runnable is implemented by class Thread. Being active simply means that a thread has been started and has not yet been stopped. Runnable provides the means for a class to be active while not subclassing Thread. A class that implements Runnable can…

Read More

Google Maps Examples

Created few examples and can be browsed here 1. Geocoder for an Address 2. Point Locations 3. Skin layer on Google Map 4. Location Information 5. Point Address on Map.html 6. Clickable Sidebar 7. Distance between 2 points 8. Map with Polygon 9. Driving Directions 10. AJAX Search

Read More

Architectural benefits of Spring

Some of the benefits Spring can bring to a project: Spring can effectively organize the middle tier objects, whether or not choose to use EJB. Spring takes care of plumbing that would be left up to you if you use only Struts or other frameworks geared to particular J2EE APIs. And while it is perhaps…

Read More