I have been experimenting with Grails for the past two days, and so far I am really happy with it.
Coming from Rails, the only thing I really missed was the dev-mode debugging information shown after the page was sent.
Here is what I mean:
Processing UsersController#show (for 127.0.0.1 at 2010-06-14 10:28:44) [GET] Parameters: {"id"=>"2"} User Load (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 2) Rendering template within layouts/users Rendering users/show Completed in 24ms (View: 5, DB: 0) | 200 OK [http:
Is there a way to get something like this in Grails? I tried the "debug" plugin, but it is not very useful, as it shows the total processing time.
I know that itβs not difficult to roll something of your own (with the exception of that part of the database statistics), I just wanted to make sure that I did not unnecessarily invent the wheel.
source share