java - setSerializationId no such method error -
im trying run project, error hits me everytime:
org.springframework.web.context.contextloaderlistener java.lang.nosuchmethoderror: org.springframework.beans.factory.support.defaultlistablebeanfactory.setserializationid(ljava/lang/string;)v @ org.springframework.context.support.abstractrefreshableapplicationcontext.refreshbeanfactory(abstractrefreshableapplicationcontext.java:128) @ org.springframework.context.support.abstractapplicationcontext.obtainfreshbeanfactory(abstractapplicationcontext.java:467) @ org.springframework.context.support.abstractapplicationcontext.refresh(abstractapplicationcontext.java:397) @ org.springframework.web.context.contextloader.createwebapplicationcontext(contextloader.java:276) this spring application context:
what can cause this? appreciated.
thanks in advance.
the setserializationid method present in defaultlistablebeanfactory class spring 3.0 not in same class spring 2.5. think you're working mixdown of 2 versions of spring. seems using library depends on old version of spring, instance maybe spring-web. suggest check jars in classpath.
Comments
Post a Comment