Re: ClassNameLocator does not handle duplicates

2010-08-17 Thread Inge Solvoll
I have tried repeatedly decorating and advising ClassNameLocator, it doesn't work, my methods are never hit. To be sure, I tried to replace the service name with another known service (ClientInfrastructure), which worked. Does anyone see someting wrong with the method below? Or is it not possible t

Re: ClassNameLocator does not handle duplicates

2010-07-26 Thread Inge Solvoll
I'm using eclipse, but it's a big legacy project with lots of custom build needs. So it isn't too easy to setup a smooth integrated build environment... I suddenly realized that it shouldn't be too hard decorating the ClassNameLocator and strip away duplicates from its result. Seems logical when t

Re: ClassNameLocator does not handle duplicates

2010-07-11 Thread Thiago H. de Paula Figueiredo
On Sun, 11 Jul 2010 11:45:24 -0300, Inge Solvoll wrote: As I said, it's convenient. Our application consists of many different maven projects that need to be assembled into one web container as jars. It's a complex aggregated application, and it would require extra work to provide a spec

Re: ClassNameLocator does not handle duplicates

2010-07-11 Thread Inge Solvoll
On Sat, Jul 10, 2010 at 8:08 PM, Thiago H. de Paula Figueiredo < thiag...@gmail.com> wrote: > On Sat, 10 Jul 2010 13:40:38 -0300, Inge Solvoll > wrote: > > Hi! >> > > Hi! > > In our application we have classes packaged in jars. When we make changes >> to >> those classes during development, the

Re: ClassNameLocator does not handle duplicates

2010-07-11 Thread Robin Komiwes
Can we open a JIRA for that? -- Robin Komiwes On Sat, Jul 10, 2010 at 8:08 PM, Thiago H. de Paula Figueiredo < thiag...@gmail.com> wrote: > On Sat, 10 Jul 2010 13:40:38 -0300, Inge Solvoll > wrote: > > Hi! >> > > Hi! > > In our application we have classes packaged in jars. When we make changes

Re: ClassNameLocator does not handle duplicates

2010-07-10 Thread Thiago H. de Paula Figueiredo
On Sat, 10 Jul 2010 13:40:38 -0300, Inge Solvoll wrote: Hi! Hi! In our application we have classes packaged in jars. When we make changes to those classes during development, they are compiled into WEB-INF/classes, making them override the ones in the jars because WEB-INF/classes is rea

ClassNameLocator does not handle duplicates

2010-07-10 Thread Inge Solvoll
Hi! In our application we have classes packaged in jars. When we make changes to those classes during development, they are compiled into WEB-INF/classes, making them override the ones in the jars because WEB-INF/classes is read first by the classloader. This is a convenient way of developing for u