목록분류 전체보기 (50)
개발여행의 블로그
오라클 버전에 맞는 드라이버 찾기. Oracle 버전에 호환되는 JDBC를 설치해야 하기 때문에 Oracle 홈페이지에 나온 내용을 참고하여 설치. The Oracle JDBC driver is always compliant to the latest JDK version in each of the new releases. In some versions, JDBC drivers support multiple JDK versions. Use the table below to choose the correct JDBC driver based on your preferred JDK version. 사용할 데이터베이스 버전에 맞게 드라이버 설치하지 않을 시, 큰 에러가 생길 수 있기 때문에 주의해야한다. 참고 :..
코드로 배우는 스프링 웹 프로젝트 (구멍가게 코딩단) 책을 따라하며 실습하던 중 다음과 같은 에러 발생 chapter 02 스프링의 특징과 의존성 주입 (61p) --> error message : Class cannot be resolved to a type : ContextConfiguration cannot be resolved to a type : The import org.springframework.test cannot be resolved 등 test 관련 설정들을 import하지 못하는 에러 발생 pom.xml에 ~~ 태그 안 다음 코드를 추가해주면 에러 해결 org.springframework spring-test 5.0.7.RELEASE 테스트 관련 설정이 추가된 이후 에러가 사라짐 자..