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>