I am trying to set a method Hook to KafkaListenerContainerFactory.KafkaListenerContainerFactory() I am having problems defining the method signature and always get the error: java.lang.IllegalArgumentException: None of [private static net.bytebuddy.dynamic.DynamicType$Builder com.bionicstork.analysis.hooks.Ka…
Tag: byte-buddy
Is there any way to call advice() on a loaded class’s methods before the ByteBuddy agent?
I have implemented a simple agent as below. It works for my custom Foo.class, but I couldn’t assign advice for the java.net.URL class. Example test code; Is there any specific approach to binding advice’s java.net.URL class methods so that the class is loaded before the ByteBuddy agent? Answer Raf…