如何获取名称存储在变量中的方法返回的值

时间:2019-03-30 12:47:36

标签: spring methods dynamic call

我在Spring Boot应用程序中有一个字符串变量存储方法调用。
例如

public String foo(Result result) {
    String methodCall = "result.getStudenMaster().getStudentName()";
    return methodCall;
}

其将result.getStudenMaster()。getStudentName()存储为变量方法调用中的值,而不是result.getStudenMaster()。getStudentName()返回的值

0 个答案:

没有答案