How to add the spring libraries in tomcat 7.0, Is it necessary to copy the spring libraries in “program files (X86 )/Apache software foundation/ tomcat 7.0/ lib” or just copying the entire spring library in c-drive is enough?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Put the Spring JARs that you need into the WEB-INF/lib directory of your WAR file.
If you put them in the Tomcat /lib folder they’ll be available to all the apps deployed on Tomcat, but that may not be what you want. You’ll need all their dependencies too, of course.