토비의 스프링3.1 책과 함께 연습중 어플리케이션 컨텍스트를 적용하니 바로 다음과 같은 예외가 발생했다.
Exception in thread "main" java.lang.IllegalStateException:
CGLIB is required to process @Configuration classes.
Either add CGLIB to the classpath or remove the following
@Configuration bean definitions: [daoFactory]
pom.xml 에 다음과 같이 기술해주어 해당 라이브러리를 다운받아야 한다.
<!-- cglib -->
<dependency>
<groupId>com.kenai.nbpwr</groupId>
<artifactId>net-sf-cglib</artifactId>
<version>2.1.3-201003011305</version>
</dependency>
'코딩 > WEB' 카테고리의 다른 글
예외: TransientDataAccessResourseException (1) | 2014.11.19 |
---|---|
에러 HTTP Status 406 (0) | 2014.11.17 |
에러: AssertionError: status expected 200 but was 406 (0) | 2014.11.14 |
에러: 406 not acceptable (0) | 2014.11.14 |
에러 : ajax 파일 전송 오류 (2) | 2014.11.13 |