1. build.gradle 추가 2. DataSource 를 세팅 -> HikariCP 3. MyBatis 세팅 -> SqlSessionFactory 4. Mapper 인터페이스 5. Mapper 인터페이스 설정이 필요. 6. Mapper에 SQL을 개발. 7. Test 만들어 테스트하기 build.gradle - dependencies 안에 //스프링 코어 https://mvnrepository.com/artifact/org.springframework/spring-core implementation 'org.springframework:spring-core:5.3.18' implementation 'org.springframework:spring-test:5.3.18' implementation '..