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?
|
6
|
|
|
|
|
|
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. |
|||
|
|
|
|
Here's some tricks collected by @groovymag from Grails people in twitter: |
||
|
|
|
|
Then you can just use it everywhere and it will take care of error reporting:
|
||
|
|
|
|
For simple applications I use println statement.It is very very easy trick.For complex applications use debug mode in intellij idea. |
||
|
|
|
|
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:
|
||
|
