I have a grails 2.3.8 app.
It has a view: views/rte/subscriptions.gsp
I have a controller: controllers/RTEController.groovy
RTEController contains an action:
def subscriptions() {
}
UrlMappings.groovy contains:
"/rte" (controller: "rte") {
action = [GET: "subscriptions"]
}
When I browse to:
http://localhost:8080/MYAPP/rte
I get a 404 error.
Why is the url mapping not working?