-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

Spring MVC Beginner's Guide
By :

Every web request takes a certain amount of time to get processed in the server. In order to find out how much time it takes to process a web request, we need to calculate the time difference between the start time and end time of the web request process. We can achieve this using the interceptor concept. Let's configure our own interceptor in our project to log the execution time of each web request by performing the following steps:
Open pom.xml
—you can find pom.xml
under the root directory of the project itself.
You will be able to see some tabs at the bottom of the pom.xml
file; select the Dependencies tab and click on the Add button of the Dependencies section.
A Select Dependency window will appear; enter Group Id as log4j
, enter Artifact Id as log4j
, enter Version as 1.2.12
, select Scope as compile, and click on the OK button to save pom.xml
.
Create a class named PerformanceMonitorInterceptor
under the com.packt.webstore.interceptor
package...
Change the font size
Change margin width
Change background colour