I also thought about this article, first of all, my skills are not good. But I just like to study something. Because many friends have written similar ones before this, and I have read many of them, but the explanation is not in-depth enough. There is no answer to the questions raised by some friends. Here I sort it out based on my current abilities. And finally run successfully.
A problem occurred during the test:
1. org/springframework/data/mapping/context/MappingContextAware
2. src-resolve: Cannot resolve the name 'repository:repository' to a(n) 'type definition'
All of the above are caused by version mismatch. Especially the second error I saw some of the solutions mentioned jpa, but I did not use jpa here. Later, I replaced the spring-data-commons package and did not appear.
Let me first talk about my development environment:
myeclipse 6.5
MongoDB 2.0.8
spring 3.0.4
Finally, there are the following two (if these two versions are wrong, various and complicated problems are likely to occur). Here I will give the version I used
spring-data-document
spring-data-commons
All versions must be changed. The following is the jar download address
http://www.springsource.org/spring-data/mongodb
http://www.springsource.org/spring-data/commons
The downloaded versions are:
spring-data-commons-dist-1.4.0.M1
spring-data-document-1.0.0.M2.zip
Here are pictures of my project
Then start our development journey!
First create a new application.xml configuration file
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:mongo="http://www.springframework.org/schema/data/mongo" xsi:schemaLocation="http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/data/mongo http://www.springframework.org/schema/data/mongo/spring-mongo-1.0.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"> <mongo:mongo host="192.168.0.138" port="27017"/> <bean id="mongoTemplate"> <constructor-arg ref="mongo"/> <constructor-arg name="databaseName" value="db"/> <constructor-arg name="defaultCollectionName" value="person" /> </bean> <bean id="personRepository"> <property name="mongoTemplate" ref="mongoTemplate"></property> </bean> <context:annotation-config /> </beans>
Then write the interface that operates mongodb
/** * AbstractRepository.java */ package com.mongo.dao; import java.util.List; import com.mongo.bean.Person; /** * TODO * @author culan * @version TODO */ public interface AbstractRepository { /** * *<b>function:</b>Add object* @author culan * @createDate 2012-12-12 11:41:30 */ public void insert(Person person); /** * *<b>function:</b>Find object by ID* @author culan * @createDate 2012-12 11:41:41 */ public Person findOne(String id); /** * *<b>function:</b>Query all * @author culan * @createDate 2012-12-12 16:26:06 */ public List<Person> findAll(); public List<Person> findByRegex(String regex); /** * *<b>function:</b>Delete the specified ID object* @author culan * @createDate 2012-12 16:26:16 */ public void removeOne(String id); /** * *<b>function:</b>Delete all * @author culan * @createDate 2012-12-12 16:25:40 */ public void removeAll(); /** * Find and modify by ID *<b>function:</b> * @author culan * @createDate 2012-12 16:25:51 */ public void findAndModify(String id); } Write the corresponding interface implementation class:
/** * PersonRepository.java */ package com.mongo.dao.impl; import java.util.List; import java.util.regex.Pattern; import org.springframework.data.document.mongodb.MongoTemplate; import org.springframework.data.document.mongodb.query.Criteria; import org.springframework.data.document.mongodb.query.Update; import org.springframework.data.document.mongodb.query.Update; import com.mongo.bean.Person; import com.mongo.dao.AbstractRepository; /** * TODO * @author culan * @version TODO */ public class PersonRepository implements AbstractRepository { private MongoTemplate mongoTemplate; /* (non-Javadoc) * @see com.mongo.dao.AbstractRepository#findAll() */ @Override public List<Person> findAll() { // TODO Auto-generated method stub return getMongoTemplate().find(new Query(), Person.class); } /* (non-Javadoc) * @see com.mongo.dao.AbstractRepository#findAndModify(java.lang.String) */ @Override public void findAndModify(String id) { // TODO Auto-generated method stub //new Query(Criteria.where("id").is(id)), new Update().inc("age", 3) getMongoTemplate().updateFirst(new Query(Criteria.where("id").is(id)), new Update().inc("age", 3)); } /* (non-Javadoc) * @see com.mongo.dao.AbstractRepository#findByRegex(java.lang.String) */ @Override public List<Person> findByRegex(String regex) { // TODO Auto-generated method stub Pattern pattern = Pattern.compile(regex,Pattern.CASE_INSENSITIVE); Criteria criteria = new Criteria("name").regex(pattern.toString()); return getMongoTemplate().find(new Query(criteria), Person.class); } /* (non-Javadoc) * @see com.mongo.dao.AbstractRepository#findOne(java.lang.String) */ @Override public Person findOne(String id) { // TODO Auto-generated method stub return getMongoTemplate().findOne(new Query(Criteria.where("id").is(id)), Person.class); } /* (non-Javadoc) * @see com.mongo.dao.AbstractRepository#insert(com.mongo.bean.Person) */ @Override public void insert(Person person) { // TODO Auto-generated method stub getMongoTemplate().insert(person); } /* (non-Javadoc) * @see com.mongo.dao.AbstractRepository#removeAll() */ @Override public void removeAll() { // TODO Auto-generated method stub List<Person> list = this.findAll(); if(list != null){ for(Person person : list){ getMongoTemplate().remove(person); } } } /* (non-Javadoc) * @see com.mongo.dao.AbstractRepository#removeOne(java.lang.String) */ @Override public void removeOne(String id) { // TODO Auto-generated method stub Criteria criteria = Criteria.where("id").in(id); if(criteria == null){ Query query = new Query(criteria); if(query != null && getMongoTemplate().findOne(query, Person.class) != null) getMongoTemplate().remove(getMongoTemplate().findOne(query, Person.class)); } } /** * @return the mongoTemplate */ public MongoTemplate getMongoTemplate() { return mongoTemplate; } /** * @param mongoTemplate the mongoTemplate to set */ public void setMongoTemplate(MongoTemplate mongoTemplate) { this.mongoTemplate = mongoTemplate; } } The corresponding Person object code is also given here
/** * Person.java */ package com.mongo.bean; import java.io.Serializable; /** * TODO * @author culan * @version TODO */ public class Person implements Serializable { /** * */ private static final long serialVersionUID = 3617931430808763429L; private String id; private String name; private int age; public Person() { super(); } public Person(String id, String name, int age) { super(); this.id = id; this.name = name; this.age = age; } /** * @return the id */ public String getId() { return id; } /** * @param id the id to set */ public void setId(String id) { this.id = id; } /** * @return the name */ public String getName() { return name; } /** * @param name the name to set */ public void setName(String name) { this.name = name; } /** * @return the age */ public int getAge() { return age; } /** * @param age the age to set */ public void setAge(int age) { this.age = age; } /** * * @param name * @param age */ public Person(String name, int age) { super(); this.name = name; this.age = age; } public String toString() { return "Person[id="+id+",name="+name+",age="+age+"]"; } } Finally write down our test class and start testing
/** * MongoTest.java */ package com.mongo.test; import java.util.List; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; import com.mongo.bean.Person; import com.mongo.dao.AbstractRepository; import com.mongo.dao.impl.PersonRepository; /** * TODO * @author culan * @version TODO */ public class MongoTest { private static Log log = LogFactory.getLog(MongoTest.class.getName()); private AbstractRepository pr=null; /** * *<b> function:</b> * @author culan * @createDate 2012-12-12 16:08:02 */ public void init(){ log.debug("Start Start"); ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml"); pr= (PersonRepository)ctx.getBean("personRepository"); } /** * *<b>function:</b>Add* @author culan * @createDate 2012-12-12 16:11:01 */ public void insert(){ Person p=new Person("curian",27); pr.insert(p); log.debug("added successfully"); } /** * *<b>function:</b>Search object based on the input ID* @author culan * @createDate 2012-12-12 16:24:10 */ public void findOne(){ String id="50c83cb552c2ceb0463177d6"; Person p= pr.findOne(id); log.debug(p); } /** * *<b>function:</b>Query all* @author culan * @createDate 2012-12 16:08:54 */ public void listAll(){ List<Person> list=pr.findAll(); log.debug("Query result is as follows:"); for (Person p:list){ log.debug(p.toString()); } } /** * *<b>function:</b>Test method* @author culan * @createDate 2012-12-12 16:11:37 */ public void start(){ init(); //insert(); //listAll(); findOne(); } /** *<b>function:</b>main function* @author culan * @createDate 2012-12 11:54:30 */ public static void main(String[] args) { // TODO Auto-generated method stub MongoTest t=new MongoTest(); t.start(); } }When the log appears after the run, there is no problem.
2012-12 16:23:59:DEBUG com.mongo.test.MongoTest - Start Start 2012-12-12 16:23:59:INFO org.springframework.context.support.ClassPathXmlApplicationContext - Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@253498: startup date [Wed Dec 12 16:23:59 CST 2012]; root of context hierarchy 2012-12 16:23:59:INFO org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [applicationContext.xml] 2012-12-12 16:24:00:INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@12a0f6c: defining beans [mongo,mongoTemplate,personRepository,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor]; root of factory hierarchy 2012-12-12 16:24:00:DEBUG com.mongo.test.MongoTest - Person[id=50c83cb552c2ceb0463177d6,name=cuiran,age=27]
Attach the demo source code here: demo
The above is all the content of this article. I hope it will be helpful to everyone's learning and I hope everyone will support Wulin.com more.