当我在 Groovysh 命令提示符下给出 exit 命令时,出现以下错误。其他命令工作正常。
Groovy Shell (2.3.6, JVM: 1.8.0_25)
...
groovy:000> exit
Unknown property: exit
groovy:000>
我尝试使用 Ctrl + D 并且它也工作正常。
最佳答案
exit
被替换为 :exit
,但不幸的是我不记得它是在哪个版本中引入的。
编辑
我找到了。见 this 推文。
关于groovy - Groovysh 中退出的未知属性错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27694244/