Spring / Spring MVC Interview questions
What is the difference between ApplicationContext and WebApplicationContext in Spring MVC?
Web Application context extends Application Context which is designed to work with the standard javax.servlet.ServletContext to communicate with the container.
Beans that are instantiated in WebApplicationContext will also be able to use ServletContext if they implement ServletContextAware interface.
More Related questions...