java.lang.NoSuchMethodError: org.springframework.beans.MutablePropertyValues.add

后端 未结 2 907
醉酒成梦
醉酒成梦 2020-12-10 08:12

after adding spring webflow, jsf dependencies, i am getting the exception:

java.lang.NoSuchMethodError: org.springframework.beans.MutablePropertyValues.add(L         


        
相关标签:
2条回答
  • 2020-12-10 08:37

    This method was added in Spring 3.x

    it presents in this spring release: http://static.springsource.org/spring/docs/3.0.6.RELEASE/javadoc-api/org/springframework/beans/MutablePropertyValues.html

    but is absent in this Spring release: http://static.springsource.org/spring/docs/2.5.6/api/org/springframework/beans/MutablePropertyValues.html

    It looks like you are using the 2.5.x or older version of org.springframework.beans jar.

    Hope it helps.

    0 讨论(0)
  • 2020-12-10 08:45

    I used latest version of spring 3.0.5 and version 2.2.1 of webflow and exception was gone.

    0 讨论(0)
提交回复
热议问题