我有一个使用Activiti引擎的项目。 它支持使用Nashorn运行脚本。 在脚本任务或任务侦听器中运行此代码没有问题。 但是当使用执行监听器时,我遇到了问题。
在我的脚本中,我想抛出一个应该被java代码捕获的错误。 例如:
throw new Error("this is an error");
但是我收到了一个错误:
problem evaluating script: Error: this is an error in scripts/error.js at line number 8 at column number 1
我最初也试过这个:
var BpmnError = Java.type(org.activiti.engine.delegate.BpmnError');
throw new BpmnError("BusinessExeptionOccured","a Message");
在这种情况下,没有捕获错误,好像抛出从未发生过。
在Activiti文档中,它声明:
As of Activiti 5.9, it is possible to throw BPMN Errors from user code inside Service Tasks or Script Tasks. In order to do this, a special ActivitiException called BpmnError can be thrown in JavaDelegates or scripts
我无法找到如何做到这一点的任何例子。
我还没有看到任何可以抛出jdk.nashorn.internal.runtime.ECMAException的JavaScript代码示例 opendJDK ECMAException中的注释声明:
Exception used to implement ECMAScript "throw" from scripts.
对此有任何帮助将不胜感激。
答案 0 :(得分:2)
您可以捕获ScriptException,然后从那里访问抛出的ECMAScript对象。
示例代码:
import javax.script.*;
import jdk.nashorn.api.scripting.*;
public class Main {
public static void main(String[] args) throws Exception {
ScriptEngineManager m = new ScriptEngineManager();
ScriptEngine e = m.getEngineByName("nashorn");
try {
e.eval("throw new Error('this is an error');");
} catch (ScriptException se) {
// get the original cause
Throwable cause = se.getCause();
// in this case, the cause is a nashorn exception
if (cause instanceof NashornException) {
NashornException ne = (NashornException)cause;
// Access the underlying ECMAScript error object thrown
Object obj = ne.getEcmaError();
// print ECMA object 'as is'
System.out.println(obj);
// In this example, the thrown ECMAScript object is
// an instanceof Error. Script objects are accessible
// as JSObject in java code.
if (obj instanceof JSObject) {
JSObject jsObj = (JSObject)obj;
System.out.println(jsObj.getMember("message"));
System.out.println(jsObj.getMember("name"));
// access nashorn specific 'stack' property
System.out.println("stack trace: " + jsObj.getMember("stack"));
}
}
}
}
}
答案 1 :(得分:0)
在Activiti脚本任务中,您可以使用以下内容:
throw ("Message")
我希望这可以帮到你
答案 2 :(得分:-1)
抛出“这是一个错误”;
请参阅此处获取解释:JavaScript error handling。由于Nashorn实现了ECMAScript 5.1(正如此处声称OpenJDK Wiki, Nashorn extensions),因此正常的JavaScript错误处理应该可以正常工作。