Re: Order of classloading in WEB-INF/lib

2011-06-21 Thread Rafael Liu
Although not recommended you can place the [unziped] classes in WEB-INF/classes, or use Tomcat /lib. You should really deduplicate your JAR On Tue, Jun 21, 2011 at 8:05 AM, wrote: > Hi, > > in which order are classes loaded in jars in WEB-INF/lib? Alphabetically? > By > date? Unordered? > > My p

RE: Order of classloading in WEB-INF/lib

2011-06-21 Thread spring
> > in which order are classes loaded in jars in WEB-INF/lib? > Alphabetically? By > > date? Unordered? > > There is no order. Thank you. - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e

Re: Order of classloading in WEB-INF/lib

2011-06-21 Thread Mark Thomas
On 21/06/2011 12:05, spr...@gmx.eu wrote: > Hi, > > in which order are classes loaded in jars in WEB-INF/lib? Alphabetically? By > date? Unordered? There is no order. > My problem is: > > My WEB-INF/lib contains jar's where on jar contains older versions of a > classes than the other jar. I wil

Order of classloading in WEB-INF/lib

2011-06-21 Thread spring
Hi, in which order are classes loaded in jars in WEB-INF/lib? Alphabetically? By date? Unordered? My problem is: My WEB-INF/lib contains jar's where on jar contains older versions of a classes than the other jar. I will ensure to load the newer versions of the classes. How can this be done? Th