Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there an equivalent to the Rails command/feature "rake routes" for Grails?

Is there an equivalent to the Rails command/feature "rake routes" for Grails?

I have many routes in my current application and would like to get a better understanding of them to solve a few issues.

like image 643
BuddyJoe Avatar asked Sep 16 '11 20:09

BuddyJoe


1 Answers

Grails version 2.3 has a new feature called URL Mapping reports. This is the equivalent of the rake routes command in the Rails framework.

grails url-mappings-report

It displays a list of the URL Mappings in the application and the controller / action they map to.

like image 164
Jay Prall Avatar answered Oct 05 '22 06:10

Jay Prall