vote up 5 vote down star
8

I'm using IntelliJ Idea 8.1.2 for Grails development. The dynamic nature of Groovy is giving me a hard time debugging my code: I keep ending up in the internals of Groovy/Grails, i.e. CachedMethod, ExpandoMetaClass or the like.

Is there a way for example to tell the Idea debugger to completely skip the Groovy/Grails internals while debugging and only make steps in my own code? I did notice that there is a configuration option named "Do not step into specific Groovy classes" in Debugger > Groovy but so far I've noticed no difference.

If not, what is your workaround or how do you cope with the situation? Any help would be greatly appreciated.

flag

40% accept rate

2 Answers

vote up 4 vote down check

File->Settings->Debugger->Stepping

Do not step into the classes...

link|flag
This is how I do it too. Just put the groovy internal package patterns here and you're good to go. – Ted Naleid Jun 10 at 0:34
I added 'groovy.*' and 'org.codehaus.groovy.*' and by a quick test it seems to work just the way I wanted it to. Thank you so much! – miek Jun 10 at 7:17
My current exclusion patterns are: groovy.*; org.codehaus.groovy.*; org.springframerwork.*; org.mortbay.* (for Jetty) – miek Jun 11 at 5:41
vote up 1 vote down

Yeah, I suffer with this annoyance, too, and I don't have a good solution. My workaround once I'm lost in Groovy/Grails code is just to figure out where I should be back in my code, set a break point there, and hit Continue.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.