I am trying to add query params to request url using bytebuddy here is my code:
new AgentBuilder.Default()
.disableClassFormatChanges()
.with(AgentBuilder.RedefinitionStrategy.RETRANSFORMATION)
.type(hasSuperType(named("org.springframework.web.client.RestTemplate")))
.transform(new Transformer.ForAdvice().include(MyByteBuddy.class.getClassLoader())
.advice(ElementMatchers.named("execute"), "agent.RestTemplateAdvice"))
.installOn(instrumentation);
and advice is
@Advice.OnMethodEnter
public static void before(@Advice.AllArguments Object[] args) {
System.out.println("!!!!!!!!!!!");
String data = args[0].toString();
data = (data + "asdgb?param=myparam");
System.out.println(data);
args[0] = (Object)data;
System.out.println(args[0]);
}
output I am getting is
!!!!!!!!!!!
http://localhost:8086/movies/5678asdgb?param=myparam
http://localhost:8086/movies/5678
I have tried below advice too but this one is not even capturing the method call.
@Advice.OnMethodEnter
public static void before(@Advice.Argument(0) String argument) {
System.out.println("!!!!!!!!!!!");
argument = (argument + "asdgb?param=myparam");
System.out.println(argument);
}
Like you said, in order to change the argument you need
readOnly = false
. But like I said, your advice does not cover all threeexecute()
methods. You would get class cast exceptions for the one taking anURI
as a first parameter. Here is how to fix it:Helper classes to make your sample code compile:
ByteBuddy advice:
Driver application:
Console log: