@ResopnseBody1 [Spring] inflearn 스프링 입문 - 스프링 웹 개발 기초 3 API Controller @GetMapping("hello-string") @ResponseBody public String helloString(@RequestParam("name") String name) { return "hello " + name; // "hello spring" } @ResponseBody http body부에 data ("hello " + name) 직접 넣어주겠다. 요청한 문자가 클라이언트에 그대로 전달. 템플릿엔진과의 차이 : view 필요 없음 http://localhost:8080/hello-string?name=spring 소스 보기 하면 html 태그 없이 문자열만 보여진다. @ResponseBody 객체를 리턴 (API 방식) 객체 반환, @ResponseBody.. 2022. 9. 7. 이전 1 다음