Career/Spring Boot

[Spring Boot] 스프링 부트 oracle.jdbc.driver.OracleDriver 에러 해결 방법 (초간단)

AlexHouse 2022. 9. 9. 12:16
728x90

 

pom.xml에

 

이거 추가 해주면 된다.

 

		<!-- https://mvnrepository.com/artifact/org.springframework/spring-web -->
		<dependency>
			<groupId>com.oracle.database.jdbc</groupId>
			<artifactId>ojdbc8</artifactId>
			<scope>runtime</scope>
		</dependency>

 

만약 이게 안된다?

 

그럼

 

 

https://mvnrepository.com/artifact/com.oracle.jdbc

 

여기 들어가서 본인에게 맞는 버전으로 찾아 사용하기를 권장한다.

 

 


 

To be continue..

728x90