"text/json"
明示的な指定なしでこれを行う簡単な方法はありますか?
def remoteError = {
render( status: 500, contentType: "text/json"){
error( exception: "a remote exception occurred")
}
}
使ってみas JSON
ました...コンテンツは返されませんが、ステータスコードは正しいです...
render( status: 500, exception: params.exception) as JSON