静态定义 respond 方法所用的受支持的响应格式。
class BookController { static responseFormats = ['xml', 'json'] def show(Long id) { respond Book.get(id) } }
responseFormats 属性用于定义控制器和 respond 方法使用的受支持的响应格式。respond 方法使用 内容协商 响应最合适的类型。有关更多信息,请参阅 REST 支持 的文档。
responseFormats
respond