RE: Class loading question (with aspectj)

2009-09-04 Thread neo anderson
nds. It is interesting for me to understand more on how it works. Thanks again for your reply. Caldarale, Charles R wrote: > >> From: neo anderson [mailto:javadeveloper...@yahoo.co.uk] >> Subject: Re: Class loading question (with aspectj) >> >> I do not put the same c

RE: Class loading question (with aspectj)

2009-09-04 Thread Caldarale, Charles R
> From: neo anderson [mailto:javadeveloper...@yahoo.co.uk] > Subject: Re: Class loading question (with aspectj) > > I do not put the same class i.e. TapestryFilter.java in both location > (WEB-INF/classes and WEB-INF/lib). A .java file is not a class file. > The way how I

Re: Class loading question (with aspectj)

2009-09-04 Thread neo anderson
I do not put the same class i.e. TapestryFilter.java in both location (WEB-INF/classes and WEB-INF/lib). The way how I test is by copying TapestryFilter.java to another foler under WEB-INF/classes and renaming it to another name e.g. MyTapestryFilter.java. Then configure web.xml to use MyTapes

Re: Class loading question (with aspectj)

2009-09-04 Thread Mark Thomas
neo anderson wrote: > I read the document at > http://tomcat.apache.org/tomcat-6.0-doc/class-loader-howto.html and have a > question. What is the class loading order if the classes are located under > /WEB-INF/classes/ and /WEB-INF/lib/ respectively? The search order is always: /WEB-INF/classes /

Class loading question (with aspectj)

2009-09-03 Thread neo anderson
I read the document at http://tomcat.apache.org/tomcat-6.0-doc/class-loader-howto.html and have a question. What is the class loading order if the classes are located under /WEB-INF/classes/ and /WEB-INF/lib/ respectively? I have a aspectj class (.aj) located under /WEB-INF/classes/ and a Filte