Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- spring
- 외장톰캣
- 디자인패턴 #싱글톤
- autocomplete
- tomcat
- Mockito #Reflection #Sigleton #Test #JUnit
- 톰캣
- LiveTemplate
- Spring Framework
Archives
- Today
- Total
자라선
[Spring] CGLIB is required to process 본문
토비의 스프링 예제를 실행하던중 에러가 발생했다.
간단히 말해 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