React, Axios, Spring Boot, JPA, MySQL을 사용할 때 데이터가 흐르는 과정에서 Front → Controller → Service → Repository → Entity → DB 사이에서 이루어지는 모든 매핑의 경우의 수와, 각 매핑 시 변수명을 어떻게 해야 하는지에 대한 정리.📌 데이터 흐름 및 매핑의 경우의 수1️⃣ 전체적인 데이터 흐름[React] → (Axios 요청) → [Controller] → (DTO 변환) → [Service] → (Entity 변환) → [Repository] → (DB 저장) → [DB] → (조회 후 Entity 반환) → [Se..