aopalliance ClassNotFoundExceptions
I'm trying to get a simple aop interceptor to work. I'm using the latest spring framework 3.0.x. Here is a snippet from my context file:
...................
<bean id="debugInterceptor" class="org.springframework.aop.interceptor.DebugIn terceptor">
<property name="useDynamicLogger" value="true" />
</bean>
.....................
When I deploy to tomcat, I get aopalliance exceptions like:
Caused by: java.lang.NoClassDefFoundError: org/aopalliance/aop/Advice
at java.lang.Class.getDeclaredMethods0(Native Method)
at java.lang.Class.privateGetDeclaredMethods(Class.ja va:2427)
at java.lang.Class.getDeclaredMethods(Class.java:1791 )
at java.beans.Introspector$1.run(Introspector.java:12 72)
...............................
I searched the spring dist directory, but there are no jar files containing aopalliance stuff. Why does the spring framework reference aopalliance classes, yet they are not included in the distribution?
Am I missing something?