Java Byte Code Modification Using Cglib and Asm
This article looks at how cglib library can be used for java byte code manipulation at runtime. A number of popular java projects such as spring framework, guice and hibernate internally use cglib for byte code manipulation. Byte code modification enables manipulation or creation of new classes after compilation phase of java applications. In java, […]