Re: How to implement a webapp class loader

2010-07-08 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Goren, On 7/8/2010 5:09 AM, Goren Il wrote: > I would like to implement my on webapp class loader, that will look for > jars in specific places (to be defined in the configuration). > I would like to inherit the behavior of the default class loader of

Re: How to implement a webapp class loader

2010-07-08 Thread Pid
On 8 Jul 2010, at 10:09, Goren Il wrote: > > > I would like to implement my on webapp class loader, that will look for jars > in specific places (to be defined in the configuration). > I would like to inherit the behavior of the default class loader of the > webapp, so I can not use a regular

How to implement a webapp class loader

2010-07-08 Thread Goren Il
I would like to implement my on webapp class loader, that will look for jars in specific places (to be defined in the configuration). I would like to inherit the behavior of the default class loader of the webapp, so I can not use a regular ClassLoader. I considered inheriting from WebappClass

Re: How to implement a webapp class loader

2010-07-07 Thread Pid
On 07/07/2010 16:05, Goren Il wrote: > > I would like to implement my on webapp class loader, that will look for > jars in specific places (to be defined in the configuration). > I would like to inherit the behavior of the default class loader of the > webapp, so I can not start use a regular Cla

How to implement a webapp class loader

2010-07-07 Thread Goren Il
I would like to implement my on webapp class loader, that will look for jars in specific places (to be defined in the configuration). I would like to inherit the behavior of the default class loader of the webapp, so I can not start use a regular ClassLoader. I considered inheriting from Webap