I have spring-webmvc 3.1.0.release version in my web-inf/lib folder of my warfile, but when the app is deployed to weblogic i am getting compilation errors.
weblogic is using spring 2.x version which comes bundled with weblogic 10.3.x to compile the jsps.
because of which i am getting compile time errors like setDynamicAttribute(null, String, String) is undefined for the type ErrorsTag
I tried using prefer-application-packages tag in weblogic.xml but it didn't work.
How do i resolve this?
Thanks in advance for the help!!