한 번만 더 해보자

[Spring] The fully qualified name of the bean's class, except if it serves only as a parent definition for child bean definitions. 본문

Spring

[Spring] The fully qualified name of the bean's class, except if it serves only as a parent definition for child bean definitions.

정 하임 2024. 1. 18. 22:04

문제점

  • ojdbc 버전이 낮음

해결법

ojdbc 버전을 올리기 pom.xml에 입력!

 

 

The fully qualified name of the bean's class, except if it serves only as a parent definition for child bean 
 definitions.

<dependency>
	<groupId>com.oracle</groupId>
	<artifactId>ojdbc6</artifactId>
	<version>11.2.0.3</version>
	<scope>compile</scope>
</dependency>

반응형