java.util.zip.ZipException: error in opening zip file
at java.util.zip.ZipFile.open(Native Method)
What is that??
It turns out that if you're using
or scanning for @Component-annotated beans
To get around this you have to add Snowdrop-vfs-1.0.1.GA and tell spring to use the 0org.jboss.spring.vfs.context.VFSXmlWebApplicationContext class instead of it's default class when loading the Web Application Context.
More details can be found here:
https://issues.jboss.org/browse/JBPAPP-5051 (The 5th comment down details the work around)

This link describes the problem in detail for those that are curious: http://www.redhat.com/f/pdf/jbw/mbogoevici_1050_spring_on_jboss.pdf
I've also read that upgrading to Spring 3.0 fixes the issue but I haven't tried it myself.