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

后端 未结 2 917
醉酒成梦
醉酒成梦 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.

提交回复
热议问题