[Spring Exception]NoSuchMethodError:....MutablePropertyValues.add(...)

今天在整合Struts2,Spring3.0,Hibernate3.3时无意发现一个异常,现记录下来,以备日后快速查看。

由于是直接用myeclipse8.6添加了对各框架的支持,在添加struts2的时候,无意中把spring2.5的一些jar包也加到工程了,之后又添加了spring3.0的支持。于是在单元测试的时候出现了下面的异常:

 

org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Failed to import bean definitions from relative location [applicationContext.xml]
Offending resource: class path resource [applicationContext_bean.xml]; nested exception is org.springframework.beans.factory.BeanDefinitionStoreException: Unexpected exception parsing XML document from class path resource [applicationContext.xml]; nested exception is java.lang.NoSuchMethodError: org.springframework.beans.MutablePropertyValues.add(Ljava/lang/String;Ljava/lang/Object;)Lorg/springframework/beans/MutablePropertyValues;
 at org.springframework.beans.factory.parsing.FailFastProblemReporter.error(FailFastProblemReporter.java:68)
 at org.springframework.beans.factory.parsing.ReaderContext.error(ReaderContext.java:85 

 

解决办法:

 

myeclipse中选择菜单 Window->Preferences ,"输入‘Project Capabilities’",选择‘struts2’,选择Library modules为Struts2 Spring Libraries,将spring-beans,spring-context,spring-web,spring-core都删除,Apply->OK

 

然后进入项目Build path,将Struts2 Spring Libraries删除后重新添加,OK。

 

 

(很久没弄发现陌生很多,真是一日不写,如隔三秋啊~!)

你可能感兴趣的:(spring,框架,struts,MyEclipse)