58일차(3)/Spring Boot(4) : Boot 에서 DB연동, MyBatis 사용 ** DB설정하기 - 새 스프링 스타터 프로젝트 생성 - 기존에 선택했던 2개 + SQL에서 3개! 이렇게 선택 - 프로젝트를 생성하면 pom.xml에 선택한 항목들이 들어가 있다. - 저 oracle 디펜던시가 이전에는 직접 집어넣어 주었던 ojdbc6.jar를 대체하는 것이다. application.properties 설정 # Server port setting server.port=9000 # context path server.servlet.context-path=/boot04 # oracle DataSource Setting (Connection Pool) spring.datasource.driver-cla..