As we know, grails automatically maps MyController
to [root]/my
as expected, but if I have MyAnotherController
it gets mapped to [root]/myAnother
. I would like to get it mapped automatically to [root]/my/another
.
Is there a way to do this without putting additional URL mapping directives to conf/UrlMappings.groovy
?