I can post the stack if you like but I doubt it will be much help. Since my
webapp uses Spring most of the trace consists of spring bean exceptions.
Attaching the more relevant portion below. I have been talking with Romain in
the other thread about this same issue if you want to follow along there (I
managed to email the list twice with the same message basically).
Caused by: java.lang.NoClassDefFoundError:
org/springframework/aop/support/AopUtils
at
org.springframework.scheduling.annotation.ScheduledAnnotationBeanPostProcessor.postProcessAfterInitialization(ScheduledAnnotationBeanPostProcessor.java:113)
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsAfterInitialization(AbstractAutowireCapableBeanFactory.java:407)
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1461)
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:519)
... 59 more
Caused by: java.lang.ClassNotFoundException:
org.springframework.aop.support.AopUtils
at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
... 63 more
Trevor Stevens
[email protected]
On Dec 21, 2013, at 6:29 AM, Andy <[email protected]> wrote:
> On 20.12.2013 19:55, Trevor Stevens wrote:
>> I am currently getting classloading issues on the latest TomEE snapshot. If
>> I take a war successfully deployed to 1.6.0 and copy it to 1.6.1-SNAPSHOT I
>> get class not found exceptions for classes contained within the lib of the
>> webapp. Have there been any changes since release which could cause this?
>>
>> Trevor Stevens
>> [email protected]
>>
>>
>>
>>
> Can you post the error and stacktrace please.
>
> Andy.