[스프링 1팀] 5장~6.5장. API 작성과 데이터베이스 연동
5장. API를 작성하는 다양한 방법GET API 만들기GET API: 웹 애플리케이션 서버에서 값을 가져올 때 사용하는 API ✅ 컨트롤 클래스에 @RestController와 @RequestMapping 설정 @RestController @RequestMapping("/api/v1/get-api") public class GetController { }클래스 수준에서 @RequestMapping 설정 -> 내부 선언한 URL 리소스 앞에 @RequestMapping의 값이 공통 값으로 추가됨 ✅ @RequestMapping으로 구현하기 // http://localhost:8080/api/v1/get-api/hello @RequestMapping(value = "/hel..
24-25/Spring 1
2024. 11. 22. 10:00