DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=22419>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=22419 ClasspathResourceLoader uses wrong ClassLoader (caching breaks) ------- Additional Comments From [EMAIL PROTECTED] 2004-07-23 07:52 ------- I discussed this topic on the user list with Will, it is the link he mentioned. I would just like to add that the ThreadContext one line patch does not fix the caching problem. To fix the caching you must change this result= classLoader.getResourceAsStream( name ); to this URL url = classLoader.getResource(name); result = url.openStream(); see the link given by Will for more discussion. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
