|
@@ -12,6 +12,7 @@ import org.apache.commons.pool2.impl.GenericKeyedObjectPool;
|
|
|
import java.io.File;
|
|
|
import java.lang.reflect.InvocationTargetException;
|
|
|
import java.lang.reflect.Method;
|
|
|
+import java.lang.reflect.Modifier;
|
|
|
import java.net.URL;
|
|
|
import java.net.URLClassLoader;
|
|
|
import java.util.Map;
|
|
@@ -41,18 +42,26 @@ public class JavaScriptEngineUtil {
|
|
|
}
|
|
|
|
|
|
Class<?> classExample = classLoader.loadClass(className.asText()); //获取类实例
|
|
|
-// Object classInstance = classExample.getConstructor().newInstance();//类实例接口 无参数构造
|
|
|
Method javaMethod = null;
|
|
|
Method closeMethod = null;
|
|
|
for (Method currentMethod : classExample.getMethods()) {//循环所有方法
|
|
|
String methodName = currentMethod.getName();
|
|
|
if (methodName.equals(method.asText())) {
|
|
|
javaMethod = currentMethod;
|
|
|
- } else if (methodName.equals("close")) {
|
|
|
+ } else if ("close".equals(methodName)) {
|
|
|
closeMethod = currentMethod;
|
|
|
}
|
|
|
}
|
|
|
- return new JavaApply(null, javaMethod, closeMethod);
|
|
|
+ Object classInstance = null;
|
|
|
+ if (javaMethod != null) {
|
|
|
+ int modifiers = javaMethod.getModifiers();
|
|
|
+ boolean aStatic = Modifier.isStatic(modifiers);
|
|
|
+ if (!aStatic) {
|
|
|
+// 不是静态方法 需要实例化一个对象
|
|
|
+ classInstance = classExample.getConstructor().newInstance();//类实例接口 无参数构造
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return new JavaApply(classInstance, javaMethod, closeMethod);
|
|
|
} finally {
|
|
|
if (Objects.nonNull(classLoader)) {
|
|
|
if (classLoader instanceof URLClassLoader cl) {
|