Created
May 19, 2017 05:03
-
-
Save dotkebi/e80b382a779b101c0a56d87955915e8d to your computer and use it in GitHub Desktop.
ResponseBodyExampleController3
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 ResponseBodyExampleController3 { | |
@ResponseBody | |
@GetMapping("/") | |
public String someMethod() { | |
return "result"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment