org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'customerBo' defined in ServletContext resource [/WEB-INF/spring/root-context.xml]: BeanPostProcessor before instantiation of bean failed; nested exception is java.lang.NoClassDefFoundError: org/aspectj/lang/annotation/Aspect
java.lang.ClassNotFoundException: org.aspectj.lang.annotation.Aspect
위와 같은 에러가 나는 경우
jar 파일이 누락된 것이 원인이다.(ClassNotFoundException 에러이므로!)
pom.xml에 다음을 추가해준다.
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.6.6</version>
</dependency>
'IT노트(구) > Java' 카테고리의 다른 글
org.hibernate.LazyInitializationException: could not initialize proxy - no Session 에러가 날 때 (0) | 2015.10.16 |
---|---|
com.sun.org.apache.xerces.internal.util 에러 해결 방법 (0) | 2015.10.16 |
The prefix "aop" for element "aop:aspectj-autoproxy" is not bound 에러가 날 때 (0) | 2015.10.14 |
model.addAttribute()를 jsp(스크립트릿)에서 받는 방법 (0) | 2015.10.13 |
미국에서도 괜찮은 자바 개발자를 찾기가 힘들다. (0) | 2015.06.20 |