https://github.com/fnzl54/Good-Night-Hackathon-SpringBoot

개발 API

레스토랑

리뷰


Spring 개발 흐름

  1. domain 폴더에 entity 작성 (테이블 생성)
  2. domain 폴더의 repository 작성 (기본적인 CRUD)
  3. service 작성 (요청을 받으면 작동할 함수 생성)
    1. 필요에 따라 dto 작성
  4. controller (요청에 따라 service에 원하는 함수로 요청)

Spring 파일 구조

1. entity

→ DB에 쓰일 필드와 여러 엔티티간의 연관관계 정의