File-New-Other-Spring Starter Project JUnit Test 는 스프링이 아닌 자바에 있음 MyBatis0207ApplicationTests.java package com.study.springboot; import static org.assertj.core.api.Assertions.assertThat; import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import com.study.springboot.dao.Emp; import com.stud..