
10
Jun, 15
Case Insensitive URL Mapping In Grails
In grails we can do URL Mapping easily but URL also need to be case insensitive. Below is the example to make URL case insensitive. '$_controller/$_action' { controller = { params?._controller?.toLowerCase() } action = {...
Recent Comments