Re: $CATALINA_HOME/common/lib or WEB-INF/lib

2007-06-28 Thread Filip Hanik - Dev Lists
Przemysław Klein wrote: Mentioned webapps are strictly related. In fact they are part of one large system. What is the best way to add make library/libraries available to all application? Put it in $CATALINA_HOME/common/lib or is there better way to do that? shared/lib if you want the applicati

Re: $CATALINA_HOME/common/lib or WEB-INF/lib

2007-06-28 Thread Przemysław Klein
Mentioned webapps are strictly related. In fact they are part of one large system. What is the best way to add make library/libraries available to all application? Put it in $CATALINA_HOME/common/lib or is there better way to do that? prp -- _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ Przemek K

Re: $CATALINA_HOME/common/lib or WEB-INF/lib

2007-06-27 Thread Len Popp
Using a single copy would save memory, but not a very large amount compared to the size of 15 typical webapps. More significant are the convenience factors: Using a single shared copy of the lib is good if the webapps are all related and you need to make sure they're all using the same version of

$CATALINA_HOME/common/lib or WEB-INF/lib

2007-06-27 Thread Przemysław Klein
Hi there.. I have 15 apps on my Tomcat. Five of them require library abc.jar (~1,5MB). From the resources point of view (mem, cpu) is it better to make abc.jar visible globaly to all applications (place it in $CATALINA_HOME/common/lib) or copy to WEB-INF/lib of all five dependent applications