0

Eclipse Display view does not work while debugging Groovy.

enter image description here

How can I get a REPL when debugging Groovy?

Edit: It is worth noting the problem is not related to the given code. A simple expression like 1+1 also has this problem. So I assume Groovy doesn't work with Display. enter image description here

4

1 回答 1

0

这不适用于香草 groovy-eclipse。使用 groovy 获得显示视图、监视表达式和条件断点的唯一方法是安装 GGTS。原因是该实现需要附加到 Java 编译器的钩子和没有 GGTS 时不可用的工具。

显示视图集成并不完美,但它适用于 groovy 中的大多数情况(包括元编程意识)。

只需确保启用了 JDT 编织(转到 Preferences -> JDT weaving 进行配置)。

于 2014-06-06T04:09:15.987 回答