进行以下测试:
public static class Scripted { public void setThing(List<?> list) { System.out.println("Set via list"); } public void setThing(Object[] array) { System.out.println("Set array"); } } @Test public void testScripting() throws Exception { ScriptEngine engine = new ScriptEngineManager().getEngineByExtension("js"); engine.getContext().setAttribute("s",new Scripted(),ScriptContext.ENGINE_SCOPE); engine.eval("s.thing = Array(1,2,3);"); }
随着Rhino发行的Java 7版本,如果你运行这个,你会得到一个这样的异常:
javax.script.ScriptException: sun.org.mozilla.javascript.internal.EvaluatorException: The choice of Java constructor setThing matching JavaScript argument types (object) is ambiguous; candidate constructors are: void setThing(java.util.List) void setThing(java.lang.Object[]) (<Unknown source>#1) in <Unknown source> at line number 1
首先的Object []重载存在是因为以前版本的Rhino不会自动将数组转换为List,而是将它们转换为Object [].
如果这是一个个人项目,那么我将删除Object []重载.问题是这是一个公共API,现在可能有人打电话给这个方法.我仍然希望升级到Java 7,但是我想避免让JavaScript用户或使用阵列版本的方法的人感到烦恼.