IntelliJ IDEA version : 2024.3.4.1spring boot version : v3.3.10-SNAPSHOTMySQL version : 8.0.41문서를 읽기 전에 전체 디렉토리 구조를 파악하고 읽으면 이해하기 쉬움!1. 전체 디렉토리 구조src├── main│ ├── java│ │ └── com.mc.app│ │ ├── dto 1. MySQL 계정 생성use mysql;create database 데이터베이스 이름;select host, user from user;create user '이름'@'localhost' identified by '비밀번호';create user '이름'@'%' identified by..