자라선

[Spring] CGLIB is required to process 본문

Develop/Spring framework

[Spring] CGLIB is required to process

자라선 2020. 7. 31. 10:46

토비의 스프링 예제를 실행하던중 에러가 발생했다.

간단히 말해 CGLIB 라이브러리가 없단다.

난 Spring Legacy 프로젝트로 생성했으니 그냥 pom.xml에 다음과 같이 추가하였다.

		<!-- https://mvnrepository.com/artifact/cglib/cglib -->
		<dependency>
		    <groupId>cglib</groupId>
		    <artifactId>cglib</artifactId>
		    <version>2.2.2</version>
		</dependency>

 

'Develop > Spring framework' 카테고리의 다른 글

[Spring] ApplicationContext Code  (0) 2020.07.31
[Spring] IoC Container  (0) 2020.07.31
[Spring] IoC 제어역전  (0) 2020.07.31
[Spring] Factory  (0) 2020.07.31
[Spring] 개방 폐쇄 원칙  (0) 2020.07.31
Comments