- When I try to debug my application, the plugin says that it can't find the source? This is most commonly caused by trying to debug the application with Groovy Launch configuration instead of a Java Launch configuration.
- When I load a Groovy file, the outline view is blank? The outline uses information returned from the Groovy compiler. If something is preventing the file from being compiled, then the outline view will remain blank until a successful compilation takes place.
- When I edit a Groovy file, the outline view doesn't upate? The outline uses information returned from the Groovy compiler. The compiler is invoked when the Eclipse starts up and after each file change. If something is preventing the file from being compiled, then the outline view won't change until a successful compilation takes place.
- When my Application throws an Exception, the Stack Trace is not filtered for the Groovy Files:
You can filter with this method:def pst(e){ def newTrace = [] e.stackTrace.each{te-> if (te.toString() =~ /.*groovy:\d*/) newTrace << te } e.stackTrace = newTrace e.printStackTrace() } -
Labels
(None)