Problems with Context/

2008-09-03 Thread Paul Pepper
A discussion regarding the use of the Context/ element, within server.xml and $CATALINA_BASE/conf/[enginename]/[hostname]/, grew from a thread with subject Problem with JNDI environment entry resources: http://marc.info/?l=tomcat-userm=122045686313688w=2 In that thread the question seemed to boil

Re: Problems with Context/

2008-09-03 Thread Mark Thomas
Paul Pepper wrote: A discussion regarding the use of the Context/ element, within server.xml and $CATALINA_BASE/conf/[enginename]/[hostname]/, grew from a thread with subject Problem with JNDI environment entry resources: http://marc.info/?l=tomcat-userm=122045686313688w=2 In that thread

Re: Problems Using Context Loader

2006-01-12 Thread Michel Costa
at your idea... but seems you are not trying to reload the classes references. - Segue mensagem original! - De: Sriram Narayanan [EMAIL PROTECTED] Data: Thu, 12 Jan 2006 01:59:21 +0530 Para: Tomcat Users List users@tomcat.apache.org Assunto: Re: Problems Using Context Loader

Re: Problems Using Context Loader

2006-01-12 Thread Sriram Narayanan
On 1/12/06, Michel Costa [EMAIL PROTECTED] wrote: No, that is not a Tomcat problem... it's a specific application problem... I saw some people complaining about the same things in applications similar to mine. By No, that is not a Tomcat problem..., I believe you're saying that there's no

Re: Problems Using Context Loader

2006-01-12 Thread Michel Costa
The major problem is not about putting hibernate in the context's lib folder, but as you may know, hibernate does some mapping stuff, which means it reads a bunch of .hbm.xml files into memory, connects and validate these mappings everytime the context gets reloaded, and depending on how much

Problems Using Context Loader

2006-01-11 Thread Michel Costa
Hi everyone, I am trying to create a ClassLoader for my application so then I will not have to reload all the hibernate and struts when a new class is compiled. Then my problems started: I do not know where to put my special ClassLoader. I got lots of classcast exceptions until I found that a

Re: Problems Using Context Loader

2006-01-11 Thread Sriram Narayanan
On 1/11/06, Michel Costa [EMAIL PROTECTED] wrote: Hi everyone, I am trying to create a ClassLoader for my application so then I will not have to reload all the hibernate and struts when a new class is compiled. Could you please explain why this is a problem ? Is the startup time an issue ?