spring 整合mongodb报NoSuchMethodError错误
生活随笔
收集整理的這篇文章主要介紹了
spring 整合mongodb报NoSuchMethodError错误
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
剛開始通過網上查到相關的資料進行了一些配置,參考鏈接:http://www.open-open.com/lib/view/open1454374782167.html
maven的dependencies如下:
<dependency><groupId>org.springframework</groupId><artifactId>spring-core</artifactId><version>4.2.3.RELEASE</version><exclusions><exclusion><groupId>commons-logging</groupId><artifactId>commons-logging</artifactId></exclusion></exclusions><type>jar</type><scope>compile</scope> </dependency> <dependency><groupId>org.springframework.data</groupId><artifactId>spring-data-mongodb</artifactId><version>1.8.2.RELEASE</version> </dependency>?
spring-mongo.xml
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:p="http://www.springframework.org/schema/p"xmlns:mongo="http://www.springframework.org/schema/data/mongo"xmlns:context="http://www.springframework.org/schema/context"xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans-3.0.xsdhttp://www.springframework.org/schema/data/repositoryhttp://www.springframework.org/schema/data/repository/spring-repository-1.5.xsdhttp://www.springframework.org/schema/data/mongohttp://www.springframework.org/schema/data/mongo/spring-mongo-1.5.xsdhttp://www.springframework.org/schema/contexthttp://www.springframework.org/schema/context/spring-context.xsd"> <mongo:db-factory id="mongoDbFactory" host="127.0.0.1" port="27017" dbname="webusi" /> <bean id="mongoTemplate" class="org.springframework.data.mongodb.core.MongoTemplate"> <constructor-arg name="mongoDbFactory" ref="mongoDbFactory" /> </bean> </beans>?
測試后一直提示,mongoTemplate創建時報錯:
?
Error creating bean with name 'mongoTemplate' defined in ServletContext resource [/WEB-INF/mvc-dispatcher-servlet.xml]: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [org.springframework.data.mongodb.core.MongoTemplate]: Constructor threw exception; nested exception is java.lang.NoSuchMethodError?
后來重新調整了spring-core的版本為4.1.3.RELEASE后,就ok了,難道真是版本不兼容的問題??
再次將spring-core版本調整為4.0.6,居然又不報錯了,真是夠詭異的。。。
?
轉載于:https://www.cnblogs.com/zhuxiangguo/p/5934949.html
總結
以上是生活随笔為你收集整理的spring 整合mongodb报NoSuchMethodError错误的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: junit4使用心得
- 下一篇: Makefile常用调试方法