java.lang.NoSuchMethodError: org.springframework.beans.MutablePropertyValues.add
生活随笔
收集整理的這篇文章主要介紹了
java.lang.NoSuchMethodError: org.springframework.beans.MutablePropertyValues.add
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
在做dubbo的時候出現java.lang.NoSuchMethodError: org.springframework.beans.MutablePropertyValues.add,是因為用maven的時候其他包被引入進來了;把一些重復的包exclusion就可以了!
<dependency><groupId>com.alibaba</groupId><artifactId>dubbo</artifactId><version>2.5.3</version><exclusions><exclusion><artifactId>spring</artifactId> <groupId>org.springframework</groupId> </exclusion><exclusion><artifactId>javassist</artifactId> <groupId>org.javassist</groupId> </exclusion><exclusion><artifactId>netty</artifactId> <groupId>io.netty</groupId> </exclusion></exclusions></dependency><dependency><groupId>org.apache.zookeeper</groupId><artifactId>zookeeper</artifactId><version>3.4.6</version><exclusions><exclusion><artifactId>netty</artifactId> <groupId>io.netty</groupId> </exclusion></exclusions></dependency><dependency><groupId>com.github.sgroschupf</groupId><artifactId>zkclient</artifactId><version>0.1</version><exclusions><exclusion><artifactId>netty</artifactId> <groupId>io.netty</groupId> </exclusion></exclusions></dependency>總結
以上是生活随笔為你收集整理的java.lang.NoSuchMethodError: org.springframework.beans.MutablePropertyValues.add的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 属性“dataProvider”有多个初
- 下一篇: android开发下载文件损坏解决方法,