eclipse maven "JUnit" "javaagent"
Found this:
https://stackoverflow.com/a/35775792
You can use ea-agent-loader
With it loading an agent in runtime will look like:
public class HelloAgentWorld
{
public static class HelloAgent
{
public static void agentmain(String agentArgs, Instrumentation inst)
{
System.out.println(agentArgs);
System.out.println("Hi from the agent!");
System.out.println("I've got instrumentation!: " + inst);
}
}
public static void main(String[] args)
{
AgentLoader.loadAgentClass(HelloAgent.class.getName(), "Hello!");
}
}
No comments:
Post a Comment