在具有数据响应的拦截器上编译静态注释



在拦截器中,我有以下代码:

render(contentType: 'text/json') {
msg 'Message to show'
}

无法在此拦截器上添加@CompileStatic注释,因为未声明msg变量。 有没有办法以"编译">友好的方式编写它?

直接使用 json 生成器

def json = new JsonBuilder()
json.call([msg: 'Message to show'])
render(text: json.toString(), contentType: 'text/json')

相关内容

  • 没有找到相关文章

最新更新