Why String is Immutable and Final in Java

9 years ago

In java, string objects are immutable because String objects are cached in String pool. Immutable simply means unmodifiable or unchangeable…

Spring MVC InternalResourceViewResolver Configuration Example

9 years ago

InternalResourceViewResolver in Spring MVC is used to mapping the logical view names to actual view files under a particular directory…

Spring MVC Interview Questions and Answers

9 years ago

This tutorial has popular Spring MVC Interview Questions and answers. These have been written to help you prepare for the…

Why to Avoid Comparing Integer using == in Java 5?

9 years ago

In Java auto-boxing is very interested feature which automatically covert int to Integer, long to Long, float to Float etc.…

How to remove duplicate items from ArrayList in Java?

9 years ago

We can remove duplicate items from ArrayList in java by simply converting ArrayList into Set in Java. But Set does…

Differences between @RequestParam and @PathVariable in Spring MVC

9 years ago

Both annotations @RequestParam and @PathVariable in Spring MVC are used for fetching the values of request parameters. These annotations have…

@RequestParam Annotation in Spring MVC with Example

9 years ago

In spring the @RequestParam annotation is used to bind request parameter values to the handler method arguments in controller. Let's…

Difference between ApplicationContext and WebApplicationContext in Spring MVC

9 years ago

This tutorial explains the difference between Application Context vs Web Application Context in spring mvc. The ApplicationContext and WebApplicationContext both…

What is the DispatcherServlet in Spring and its uses?

9 years ago

DispatcherServlet: The Heart of Spring Web MVC  A "front controller" coordinates all request handling activities analogous to Struts ActionServlet /…

Core Java Interview Questions

9 years ago

Here I have categorized core java interviews questions and answers for fresher and experience developer in Basics of core java…