한 번만 더 해보자

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

Spring

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

정 하임 2024. 2. 15. 22:25

문제점

- ojdbc 버전이 낮음

 

 

에러코드

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

 

 

 

 

해결법

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