twogoods

Results 6 comments of twogoods

> Did you solve it? use annother name in schema,like this ``` input RepairApplyInput { id: ID repairMan: RepairManInput2 } input RepairManInput2 { id: ID userName: String } input RepairManInput...

@raphw here is a sample [bytebuddy-maven-plugin-test](https://github.com/twogoods/bytebuddy-maven-plugin-test/tree/main). api contains bytebuddy build plugin, dependency has buddy and asm; demo build with byte-buddy-maven-plugin `mvn -X clean package` will see error

@Aias00 I have a mcp-server A, and the dynamic server writes B. At this point, can I retrieve the combined tools of A and B from A's list/tools? I try...

> You can create a static fake method with the same signature and then use MethodSubstitution to replace the method with the actual one. [sample like this?](https://stackoverflow.com/questions/57808499/can-a-method-call-be-instrumented-with-bytebuddy-instead-of-the-called-method) like retry to...

And I have another question can Advice api provider `@Advice.AllFields` struct like map ``` @Advice.OnMethodEnter(skipOn = Advice.OnNonDefaultValue.class) public static boolean enter(@Advice.AllArguments(typing = Assigner.Typing.DYNAMIC, readOnly = false) Object[] allArguments){ method m=findChangeFunctionById();...