Grails can be a bit of a bear to debug with its long stack dumps. Getting to the source of the problem can be tricky. I've gotten burned a few times in the BootStrap.groovy doing "def foo = new Foo(a: a, b: b).save()", for example. What are your favorite tricks for debugging Grails apps?
feedback
|
closed as not constructive by Kev♦ Dec 8 '11 at 1:14
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.
|
Some general tips:
Beyond that, a lot of it just comes down to recognizing stacktraces and error messages... a lot of the time, Grails is incredibly unhelpful in the error messages it gives you, but you can learn to recognize patterns, like the following:
And so on. There are a lot of patterns to learn to recognize. | |||||
feedback
|
Then you can just use it everywhere and it will take care of error reporting:
| |||||||||
feedback
|
|
I once asked an experienced groovy developer about how he effectively debugged his applications. His answer:
And he has a very good point: If your code has sufficient unit and integration tests, you will hardly ever need to debug anything. Plus you get to say smug things like that to your fellow developers... For Grails:
| |||||||||||
feedback
|
|
To log exceptions with GrailsUtil.
| |||
|
feedback
|
|
I'm not sure if this can be done out-of-the-box, but in webapps I find it useful to have a "who am I?" facility in the various view files. The idea is to emit a message into the rendered HTML, to identify the fragment. This is especially true when I am encountering an app for the first time. In Grails, I do this with a custom tag. For example, consider list.gsp for a Student:
Here is the code:
The key is that you can leave those tags in there, if desired, as they only appear in when the mode is enabled in Config.groovy:
| |||
|
feedback
|
|
Looking at the source code! This has saved me so many times now! And now that the code is hosted at GitHub it's easier than ever. Just press "t" and start typing to find the class that you're looking for! | |||
|
feedback
|
|
Here's some tricks collected by @groovymag from Grails people in twitter: | |||
|
feedback
|
|
For simple applications I use println statement.It is very very easy trick.For complex applications use debug mode in intellij idea. | |||
|
feedback
|
|
adding this code To the Bootsrap.groovy:init will overwrite the save method and execute some other code as well, printing out error messages in this case.
hope that helps someone :) (i know its not really DRY) ref: http://grails.1312388.n4.nabble.com/How-to-override-save-method-on-domain-class-td3021424.html | ||||
|
feedback
|