Created
May 19, 2017 05:02
-
-
Save dotkebi/d2718dbd8b27ab175e030349b7a8fbd4 to your computer and use it in GitHub Desktop.
ResponseBodyExampleController2
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 ResponseBodyExampleController2 { | |
@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