2024. 1. 5. 11:13ㆍSpringBoot+JPA
🟢 RESTful API
Representational State Transfer(REST)
REST의 원칙을 따르는 API
두 컴퓨터 시스템이 인터넷을 통해 정보를 안전하게 교환하기 위해 사용하는 인터페이스
HTTP 메소드를 사용하여 자원에 대한 다양한 작업을 수행
- GET: 자원을 조회
- POST: 새로운 자원을 생성
- PUT: 자원을 업데이트하거나 새로운 자원을 생성
- DELETE: 자원을 삭제
🟢 REST
웹 기반의 서버와 클라이언트 간에 효율적이고 일관된 통신을 가능하게 하는 설계 원칙
🟢 API
소프트웨어 간에 상호 작용할 수 있도록 만들어진 인터페이스를 의미
📌 참고 사이트
Getting Started | Building REST services with Spring
In the code earlier, did you notice the repetition in single employee link creation? The code to provide a single link to an employee, as well as to create an "employees" link to the aggregate root, was shown twice. If that raised your concern, good! There
spring.io
RESTful API란 무엇인가요? - RESTful API 설명 - AWS
Amazon API Gateway는 어떤 규모에서든 개발자가 API를 손쉽게 생성, 게시, 유지 관리, 모니터링 및 보안 유지할 수 있도록 하는 완전관리형 서비스입니다. API Gateway를 사용하면 실시간 양방향 통신 애
aws.amazon.com
'SpringBoot+JPA' 카테고리의 다른 글
[SpringBoot] 스프링부트 / MVC(Model View Controller)패턴 (0) | 2024.01.19 |
---|---|
[Java+SpringBoot+JPA] DML 정의 및 종류 / SELECT, INSERT, UPDATE, DELETE (0) | 2024.01.07 |
[SpringBoot] Repository 검색 조건 종류 및 작성방법 (0) | 2023.12.31 |
[JPA] jpa정의 / 사용이유 / 작성방법 (0) | 2023.12.31 |
[SpringBoot] Model 인터페이스 / 데이터전달 / 사용방법 (1) | 2023.12.31 |