InterviewSolution
Saved Bookmarks
| 1. |
Is there any need to keepspring-mvc.jar on the classpath or is it already present as part of spring-core? |
|
Answer» The SPRING-mv.jar does not belong to the spring-core. This means that the jar has to be INCLUDED in the project’s classpath if we have to use the Spring MVC framework in our project. For JAVA applications, the spring-mvc.jar is PLACED INSIDE /WEB-INF/lib folder. |
|