I am using Tomcat 7.0.61 on Ubuntu 14.02 LTS and I can see the lib
directory existing in the /usr/share/tomcat7
folder.
The typical webapps folder for Tomcat is
/var/lib/tomcat7/webapps/ROOT/
Then I created the separated folder for my web application called myjsp
and everything seemed to work really fine because until I tried to install the JSTL taglib library downloaded from the tomcat portal.
On Windows, I put the JSTL jar file in the C:/tomcat7/lib
directory which may serve as the shared folder for all applications as far as I know. And it works on Windows because I could import the library in the scripts.
But on Ubuntu right now, nothing is likely to properly work on my system. I have tried moving the JAR file to the /usr/share/tomcat7/lib
and in /var/lib/tomcat7/webapps/myjsp/WEB-INF/lib
So where should I put the JSTL JAR file in?
Note: I created the WEB-INF
folder manually with the only folder in there which is lib
folder