Posts

Showing posts from February, 2015

Featured Post

Hibernate Spring 3 integration

Image
This tutorial is focused on usage of Hibernate with Spring 3 framework. I will show that how a basic end to end application flow looks like as a result of this integration. Employee management screen Development environment Eclipse Juno IDE JDK 1.7 JBoss 7 Maven Spring 3.0.5 Hibernate 3.6.3 Download source code For those, who are not using maven for dependency management and are relying on downloaded jar files. I have created another project with all required jar files included in source code to download. Also, I have done integration using Spring 3.2.5 and hibernate 4. So if you fall into any of above two category, please read below linked post in case any problem. Spring 3.2.5.RELEASE and Hibernate 4 Integration Example Tutorial with All Jar files To build this example project, I will guide you step by step. I this way we able to walk through some concepts also. Step 1) Create a maven web application using below command from comman...

2013-03

Image
This tutorial is focused on usage of Hibernate with Spring 3 framework. I will show that how a basic end to end application flow looks like as a result of this integration. Employee management screen Development environment Eclipse Juno IDE JDK 1.7 JBoss 7 Maven Spring 3.0.5 Hibernate 3.6.3 Download source code For those, who are not using maven for dependency management and are relying on downloaded jar files. I have created another project with all required jar files included in source code to download. Also, I have done integration using Spring 3.2.5 and hibernate 4. So if you fall into any of above two category, please read below linked post in case any problem. Spring 3.2.5.RELEASE and Hibernate 4 Integration Example Tutorial with All Jar files To build this example project, I will guide you step by step. I this way we able to walk through some concepts also. Step 1) Create a maven web application using...

Hibernate and sprin3

Image
This tutorial is focused on usage of Hibernate with Spring 3 framework. I will show that how a basic end to end application flow looks like as a result of this integration. Employee management screen Development environment Eclipse Juno IDE JDK 1.7 JBoss 7 Maven Spring 3.0.5 Hibernate 3.6.3 Download source code For those, who are not using maven for dependency management and are relying on downloaded jar files. I have created another project with all required jar files included in source code to download. Also, I have done integration using Spring 3.2.5 and hibernate 4. So if you fall into any of above two category, please read below linked post in case any problem. Spring 3.2.5.RELEASE and Hibernate 4 Integration Example Tutorial with All Jar files To build this example project, I will guide you step by step. I this way we able to walk through some concepts also. Step 1) Create a maven web application using...

Java collections

Image
Without argument, java collections is one of the most important area where you will be tested in any position whether junior or senior. The scope is so much wide, that its almost impossible to cover all the questions. Yet based on my previous interviews, I am attempting to put as many as possible GOOD java collection interview questions you must know. I am aiming both beginners and senior level questions, so bear with me if you found some questions too basic because they might be useful for some junior developers. Questions in this post: General questions 1) What is the Java Collections API? List down its advantages? 2) Explain Collections hierarchy? 3) Why Collection interface does not extend Cloneable and Serializable interface? 4) Why Map interface does not extend Collection interface? List interface related 5) Why we use List interface? What are main classes implementing List interface? 6) How to convert an array of String to ArrayList? 7) How...