I developed a web application using spring version 3.2.6 and as long as I am deploying it on my tomcat server everything works fine.
Now, if I try to deploy this same application on a weblogic application server I get the following:
java.lang.IncompatibleClassChangeError: org/objectweb/asm/AnnotationVisitor
I think it is related to the spring version installed on the remote weblogic server. I know I can force the server to use my classes by the following directive in the configuration xml:
<prefer-application-packages>
<package-name>
what do I put here?
</package-name>
Anyway I really don't know what to set there...can you help me out?