0

私はgrails 2.2.1を使用しています.Whwnプロジェクトを実行すると、次のエラーが発生しました。

Error Error executing script RunApp: org/codehaus/groovy/grails/web/mapping/filter/UrlMappingsFilter

UrlMappings.groovy

class UrlMappings {

    static mappings = {
        "/$controller/$action?/$id?"{
            constraints {
                // apply constraints here
            }
        }

        "/"(view:"/login/auth")        
        "500"(controller:'errors',action:'handleExceptions')        
        "404"(controller:'errors',action:'pageNotFoundException')        
    }    
}
4

0 に答える 0