I am using two javaagents (one is based on Byte Buddy and the other is based on Javassist) to enhance one method.
If the Javassist agent load first, both agents will work.
If the Byte Buddy agent loads first, the Byte Buddy agent can not work (the Javassist agent is still okay).
How can I solve this problem?