[Spring Boot] Mybatis Oracle 연동하는 방법
Spring Boot에서 Mybatis Oracle 연동을 하는 방법에 대하여 알아보도록 하겠습니다. 간단하게 오라클에서 대표적인 DEPT(부서) 테이블의 deptno, dept, loc을 조회하는 예제로 접근해 보겠습니다. 개발환경 1) InteliJ Community Version 2) Java 1.8 3) Oracle 11g 프로젝트 구조 Pom.xml org.springframework.boot spring-boot-starter-web org.mybatis.spring.boot mybatis-spring-boot-starter 2.1.4 com.oracle.database.jdbc ojdbc8 runtime org.projectlombok lombok true org.springframework..