从Eclipse中调试在ScriptEngine中运行的Groovy脚本

时间:2012-08-01 11:57:24

标签: eclipse scripting groovy jsr223

我有一个Groovy脚本,运行方式如下:

File scriptFile = ...;
ScriptEngine engine = ...;
String script = FileUtils.readFileToString(scriptFile);
Object evalResult = engine.eval(script, bindings);

不出所料,脚本文件中设置的断点不会触发。我可以改变什么来使它工作?该脚本需要在较大程序(没有单独的启动配置)和ScriptEngine的上下文中运行,并且该文件仅在运行时才知道。

2 个答案:

答案 0 :(得分:3)

我正在使用这个hack:我已经定义了一个Java类Debugger,如下所示:

public class Debugger {

    private static final Logger log = LoggerFactory.getLogger( Debugger.class );

    /**
     * Invoke this method anywhere to end up in the Java debugger.
     * 
     * <p>Sometimes, you have code that might eventually be executed or you have a place
     * where you want to stop but no code line.
     * 
     * <p>In these case, use this method.
     * 
     * <p>Don't forget to set a breakpoint, first :-)
     * */
    public static void stopInDebugger() {
        log.error( "Please set a breakpoint in Debugger.stopInDebugger() and try again whatever you just did!" );
    }
}

我在Ecipse的log.error行有一个断点。

现在,我可以将这一行放入我想要断点的脚本中:

Debugger.stopInDebugger();

当然,它不允许我轻松地逐步完成脚本,但它总比没有好。

答案 1 :(得分:1)

你的脚本文件是否在类路径的源文件夹中(听起来不是这样)?如果没有,那就这样吧。您还可以更改首选项以确保编译器永远不会编译脚本文件(并且可选地甚至不会复制到输出文件夹)。转到首选项 - &gt; Groovy - &gt;编译并查看脚本文件夹以实现此目的。