Spring inherits MONGO is using Spring-data.
If you need to add two MONGO with Spring integrated package, Spring-data-commons-1.7.0.release.jar,spring-data-mongodb-1.4.0.release.jar.
Configuration of the MONGO
<?XML version= "1.0" encoding= "UTF-8"?><Beansxmlns= "Http://www.springframework.org/schema/beans"Xmlns:xsi= "Http://www.w3.org/2001/XMLSchema-instance"Xmlns:context= "Http://www.springframework.org/schema/context"xsi:schemalocation= "Http://www.springframework.org/schema/context http://www.springframework.org/schema/context/ Spring-context-3.0.xsd Http://www.springframework.org/schema/beans Http://www.springframework.org/schema /beans/spring-beans-3.0.xsd "> <BeanID= "Mongotemplate"class= "Org.springframework.data.mongodb.core.MongoTemplate"> <Constructor-argname= "Mongodbfactory"> <Beanclass= "Org.springframework.data.mongodb.core.SimpleMongoDbFactory"> <Constructor-argname= "uri"ref= "Mongouri"/> </Bean> </Constructor-arg> </Bean> <BeanID= "Mongouri"class= "Com.mongodb.MongoURI"> <Constructor-argname= "uri"value= "Mongodb://127.0.0.1:27017/mymongo"/> </Bean></Beans>
Spring Integrated MONGO Configuration