Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
指定する がある場合UrlMappings.groovy:
UrlMappings.groovy
"403"(controller: 'error', action: 'status403')
...次に、割り当てて実行時にこのルートをトリガーすることを望んでいました:
response.status = 403
コントローラーまたはフィルター内から。しかし、そうはなりません。コントローラーまたはフィルター内から403処理に「リクエストをキックオーバー」するための同様の宣言的な方法はありますか?
response.sendError(403)
また
render(status: 403)
他の質問を参照してください。