Spring Boot를 이용한 RESTful Web Services 개발 #7 HelloWorld Controller 추가

Jake Seo·2021년 9월 13일
0

Spring-boot-restful

목록 보기
7/17

HelloWorld Controller 추가하기

@RestController
public class HelloWorldController {
    // GET
    // /hello-world (end point)
    // @RequestMapping(method=RequestMethod.GET, path="/hello-world") -> Legacy 방법.
    @GetMapping(path = "/hello-world")
    public String helloWorld() {
        return "hello world";
    }
}

포스트맨으로 확인해보기

보통 RESTful API에서는 위에 보이는 GET, POST, PUT, PATCH, DELETE 메소드를 사용하게 된다.

profile
풀스택 웹개발자로 일하고 있는 Jake Seo입니다. 주로 Jake Seo라는 닉네임을 많이 씁니다. 프론트엔드: Javascript, React 백엔드: Spring Framework에 관심이 있습니다.

0개의 댓글