Skip to content

Instantly share code, notes, and snippets.

@pphetra
Created February 19, 2014 01:36
Show Gist options
  • Select an option

  • Save pphetra/9084508 to your computer and use it in GitHub Desktop.

Select an option

Save pphetra/9084508 to your computer and use it in GitHub Desktop.
@Secured(['ROLE_USER', 'ROLE_ANONYMOUS'])
class TestController {
def index() {
def ret = [
name: 'ไทย'
]
render(contentType: 'application/json; charset=utf-8') {
ret
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment