Last active
May 19, 2017 05:01
-
-
Save dotkebi/26e6582ac860bd5e4d880d9a81be08b8 to your computer and use it in GitHub Desktop.
ResponseBodyExample
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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