Spring MVC Architecture

Front Controller This is the Dispatcher servlet controller also called as Front controller which is the main controller which manages the flow of the Spring MVC application. This is defined in the web.xml as below <web-app>     <servlet>         <servlet-name>Dispatcher-Servlet</servlet-name>         <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>         <load-on-startup>1</load-on-startup>   […]

Share this article on

AOP Overview

In any application, we will have business logic to be developed and we write multiple classes and methods accordingly to achieve it. Each class and method we develop represents some functionality of the application. What if all these classes and methods need to have some common functionality? We call such functionality or a behavior applicable […]

Share this article on
< Previous