Skip to content

Instantly share code, notes, and snippets.

@dotkebi
Last active May 19, 2017 05:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dotkebi/26e6582ac860bd5e4d880d9a81be08b8 to your computer and use it in GitHub Desktop.
Save dotkebi/26e6582ac860bd5e4d880d9a81be08b8 to your computer and use it in GitHub Desktop.
ResponseBodyExample
@Controller
public class ResponseBodyExampleController1 {
@GetMapping("/")
public @ResponseBody String someMethod() {
return "result";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment