byte-buddy
byte-buddy copied to clipboard
Runtime code generation for the Java virtual machine.
Hi, thank you for the maintenance of this project. This project is so helpful for me. I'd like to get Spring app's http request information by javaagent, and write some...
Map> injectRaw(Map
The example in "Working with unloaded classes" is wrong. ```java class MyApplication { public static void main(String[] args) { TypePool typePool = TypePool.Default.ofSystemLoader(); Class bar = new ByteBuddy() .redefine(typePool.describe("foo.Bar").resolve(), //...
Thanks for doing the release. This is not a big deal - I just thought I'd log this for information purposes. An example build failure: https://github.com/apache/poi/runs/7632410373?check_suite_focus=true This compile failure happened...
ByteBuddy plugins currently have to be declared as dependencies of the ByteBuddy plugin itself. Unfortunately, those dependencies are not subject to versions defined in a `` section. BOM POMs have...
I try to attach and enhance by GeneralInterceptor class, and use ClassInjector to inject GeneralExecutor class because GeneralInterceptor will call GeneralExecutor's method, but is will trigger 'java.lang.NoClassDefFoundError: com/agent/interceptor/GeneralExecutor'. Here is...
[2022-07-25 15:46:57] [22745:rasp-logger_deamon_task] DEBUG c.x.r.i.ExceptionReportingAgentBuilderListener: onError(): { typeName=java.time .zone.ZoneRules, classLoader=null, module=module java.base, loaded=false } Execption: java.lang.IllegalArgumentException: Unsupported class file major version 61
For example,there are two class: ` public class Father { public void hi () {} } public class Son extends Father { public void bye () {} } ` How...