Re: Generating a class with annotations

2009-06-18 Thread Johan Haleby
You could try out Javassist, it's easy and capable of many things and you basically don't have to know anything about byte-code to use it. /Johan Jim Andreou wrote: > Thanks for your suggestion. I see JCatapult's scope is far wider than > a bytecode manipulation framework. Could you give me a

Re: What web framework best fit with guice?

2009-02-18 Thread Johan Haleby
Wicket also works well with Guice. On Wed, Feb 18, 2009 at 12:49 AM, Martin Lukasiewycz wrote: > > IT Mill is pure java / server side ajax. In combination with guice it > is really neat. > > http://itmill.com/ > > On Feb 16, 7:56 pm, Eduardo Nunes wrote: > > Hello guys! > > > > I don't want to g

Re: Proxies without ASM/CGLIB

2008-11-26 Thread Johan Haleby
t for injection. Actually I'd like to create a spike for this if I get some time over, I've been needing this kind of stuff myself. /Johan On Wed, Nov 26, 2008 at 9:22 AM, Stuart McCulloch <[EMAIL PROTECTED]> wrote: > 2008/11/26 Johan Haleby <[EMAIL PROTECTED]> > >> &

Re: Proxies without ASM/CGLIB

2008-11-25 Thread Johan Haleby
Perhaps I'm mistaken but mabey aspectj would be able to help you here? AJDT works in the Eclipse environment and thus should work in OSGi as well and afaik it would be possible to do delegation without proxying the classes using this approach? I think Spring uses aspectj to inject beans to instanc