Byte Buddy is a code generation and manipulation library for Java
1–10 of 52 posts
Re: Byte Buddy is a code generation and manipulation library for Java
#2Re: Byte Buddy is a code generation and manipulation library for Java
#3Re: Byte Buddy is a code generation and manipulation library for Java
#4Note that Java now has its own API for this purpose. https://openjdk.org/jeps/484
bytebuddy predates it by at least a decade.
Re: Byte Buddy is a code generation and manipulation library for Java
#5Note that Java now has its own API for this purpose. https://openjdk.org/jeps/484
Re: Byte Buddy is a code generation and manipulation library for Java
#6Re: Byte Buddy is a code generation and manipulation library for Java
#7Note that Java now has its own API for this purpose. https://openjdk.org/jeps/484
How does that compare in terms of usability and completeness?
Re: Byte Buddy is a code generation and manipulation library for Java
#8https://github.com/square/javapoet
I've used it to do a mass refactoring of an annotation-based library. Worked pretty great.
Re: Byte Buddy is a code generation and manipulation library for Java
#9Note that Java now has its own API for this purpose. https://openjdk.org/jeps/484
How does that compare in terms of usability and completeness?
This came to be, because Oracle noticed everyone, including themselves, were depending on ASM, so the JEP was born.
Re: Byte Buddy is a code generation and manipulation library for Java
#10Earlier quoted context omitted.
How does that compare in terms of usability and completeness?
I have not yet used it, only raising awareness. This came to be, because Oracle noticed everyone, including themselves, were depending on ASM, so the JEP was born.
It's usually not painful to update (just bump the version) but it's an annoyance.
In fact, Byte buddy has a dep on ASM.