17 lines
299 B
Groovy
17 lines
299 B
Groovy
package grails
|
|
|
|
class UrlMappings {
|
|
|
|
static mappings = {
|
|
"/$controller/$action?/$id?(.$format)?"{
|
|
constraints {
|
|
// apply constraints here
|
|
}
|
|
}
|
|
|
|
"/"(view:"/index")
|
|
"500"(view:'/error')
|
|
"404"(view:'/notFound')
|
|
}
|
|
}
|