Is there any tool which provides Java dynamic code generation and that also supports generics?

Javassist for example, is the kind of tool that I need, but it does not support generics.

I wrote a small lib which uses the Java 6 Compiler API, however as far as I know it depends on JDK. Is there a way to specify another compiler? Or to ship with my application only the parts that I need to invoke with the Java Compiler API?

link|improve this question

36% accept rate
Just out of curiosity: What exactly do you mean with "doesn't support generics" and how is that a problem for you? I'd imagine you could do everything with raw types? – meriton Aug 29 '10 at 22:12
Javassist doesn't support generic types. Therefore I'm unable to compile generic classes. Although I could do the same with objects and casting, for what I'm doing it really is helpful to have generic types at hand. – halfwarp Aug 29 '10 at 22:45
If I understand correctly, the type erasure process more or less replaces generics in the source code with objects and casting in the byte code. Generics don't exist at the byte code level. – emory Aug 29 '10 at 22:51
feedback

2 Answers

If you are comfortable with writing bytecode then ASM is quite a good library for that kind of thing. That will let you generate a class file on the fly without having to worry about the nitty-gritty of the classfile format. You can then use a classloader to dynamically load it into your application.

link|improve this answer
feedback

If I recall correctly, it is sufficient to have tools.jar in the classpath in order to use the Java compiler at runtime.

link|improve this answer
Thanks, I'll run a few tests with this tomorrow and reply back. – halfwarp Aug 29 '10 at 22:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.