錯誤的觀點我有一個名爲的LoginController用行動AUTH控制器:的Grails 1.3.7精選控制器
class LoginController {
def auth = {
render view: 'auth'
}
}
所以我去URL http://localhost:8080/myapp/login/auth,並希望看到我的看法「/login/auth.gsp」 。但我得到以下錯誤:
type Status report
message /myapp/WEB-INF/grails-app/views/jobSearch/auth.jsp
description The requested resource (/myapp/WEB-INF/grails-app/views/jobSearch/auth.jsp) is not available.
似乎由於某種原因,grails解決了錯誤的視圖名稱。你知道嗎,發生了什麼事?
class UrlMappings {
static mappings = {
"/$controller/$action?/$id?"{
constraints { // apply constraints here }
}
"/"(view:"/index") "500"(view:'/error')
}
}
你試過運行'grails clean'嗎?你的代碼看起來不錯。 – Antoine
對URLMappings的任何更改? – omarello
URLMappings中沒有任何更改 有時候,grails clean有助於。有時不。 – Maxim