@ResponseBody
Artifact
- spring-web
역할
- response를 HTTP response의 body 부분에 그대로 전달
사용법
@GetMapping("")
@ResponseBody
public String testString(){
return "test success";
}
@GetMapping("")
@ResponseBody
public String testString(){
return "test success";
}
댓글남기기