我在Spring Boot应用程序中有一个字符串变量存储方法调用。
例如
public String foo(Result result) {
String methodCall = "result.getStudenMaster().getStudentName()";
return methodCall;
}
其将result.getStudenMaster()。getStudentName()存储为变量方法调用中的值,而不是result.getStudenMaster()。getStudentName()返回的值