写这篇文章也做了下思考,首先是本人技术欠佳。但就是喜欢研究一些东西。因为在此之前有很多的朋友已经写过类似的,很多我也看过,但是讲解的不够深入。对有些朋友提出的问题不能给出答案。在这里,我根据我目前的能力对其进行整理。并最终运行成功。
在测试过程中出现过一下问题:
1、org/springframework/data/mapping/context/MappingContextAware
2、src-resolve: Cannot resolve the name 'repository:repository' to a(n) 'type definition'
以上都是版本不匹配引起的。特别是第二个错误我看有些解决时候提到了jpa,但是我这里没有使用jpa后来我是把spring-data-commons的包替换了个版本就不出现了。
我先说下我的开发环境:
myeclipse 6.5
mongodb 2.0.8
spring 3.0.4
最后就是下面2个(这两个版本不对就容易出现各种各样的,杂七杂八的问题) 这里我就给出我所采用的版本
spring-data-document
spring-data-commons
有所改变所有版本必须要对应好下面是jar下载地址
http://www.springsource.org/spring-data/mongodb
http://www.springsource.org/spring-data/commons
下载版本分别为:
spring-data-commons-dist-1.4.0.M1
spring-data-document-1.0.0.M2.zip
下面给出我工程的图片
然后就开始我们开发之旅吧!
首先新建application.xml配置文件
- <span style="font-size:18px;color:#3366ff;"><?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" class="org.springframework.data.document.mongodb.MongoTemplate">
- <constructor-arg ref="mongo"/>
- <constructor-arg name="databaseName" value="db"/>
- <constructor-arg name="defaultCollectionName" value="person" />
- </bean>
- <bean id="personRepository" class="com.mongo.dao.impl.PersonRepository">
- <property name="mongoTemplate" ref="mongoTemplate"></property>
- </bean>
- <context:annotation-config />
- </beans>
- </span>
然后编写操作mongodb的接口
- <span style="font-size:18px;color:#3366ff;">/**
- * AbstractRepository.java
- * 版权所有(C) 2012
- * 创建:cuiran 2012-12-12 11:40:40
- */
- package com.mongo.dao;
- import java.util.List;
- import com.mongo.bean.Person;
- /**
- * TODO
- * @author cuiran
- * @version TODO
- */
- public interface AbstractRepository {
- /**
- *
- *<b>function:</b>添加对象
- * @author cuiran
- * @createDate 2012-12-12 11:41:30
- */
- public void insert(Person person);
- /**
- *
- *<b>function:</b>根据ID查找对象
- * @author cuiran
- * @createDate 2012-12-12 11:41:41
- */
- public Person findOne(String id);
- /**
- *
- *<b>function:</b>查询所有
- * @author cuiran
- * @createDate 2012-12-12 16:26:06
- */
- public List<Person> findAll();
- public List<Person> findByRegex(String regex);
- /**
- *
- *<b>function:</b>删除指定的ID对象
- * @author cuiran
- * @createDate 2012-12-12 16:26:16
- */
- public void removeOne(String id);
- /**
- *
- *<b>function:</b>删除所有
- * @author cuiran
- * @createDate 2012-12-12 16:25:40
- */
- public void removeAll();
- /**
- * 通过ID找到并修改
- *<b>function:</b>
- * @author cuiran
- * @createDate 2012-12-12 16:25:51
- */
- public void findAndModify(String id);
- }
- </span>
再写对应接口的实现类:
- <span style="font-size:18px;color:#3366ff;">/**
- * PersonRepository.java
- * 版权所有(C) 2012
- * 创建:cuiran 2012-12-12 11:42:51
- */
- 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.Query;
- import org.springframework.data.document.mongodb.query.Update;
- import com.mongo.bean.Person;
- import com.mongo.dao.AbstractRepository;
- /**
- * TODO
- * @author cuiran
- * @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;
- }
- }
- </span>
这里也给出对应Person对象代码
- <span style="font-size:18px;color:#3366ff;">/**
- * Person.java
- * 版权所有(C) 2012
- * 创建:cuiran 2012-12-12 11:37:16
- */
- package com.mongo.bean;
- import java.io.Serializable;
- /**
- * TODO
- * @author cuiran
- * @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+"]";
- }
- }
- </span>
最后写出我们的测试类开始进行测试
- <span style="font-size:18px;color:#3366ff;">/**
- * MongoTest.java
- * 版权所有(C) 2012
- * 创建:cuiran 2012-12-12 11:54:30
- */
- 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 cuiran
- * @version TODO
- */
- public class MongoTest {
- private static Log log = LogFactory.getLog(MongoTest.class.getName());
- private AbstractRepository pr=null;
- /**
- *
- *<b>function:</b>
- * @author cuiran
- * @createDate 2012-12-12 16:08:02
- */
- public void init(){
- log.debug("开始启动");
- ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml");
- pr= (PersonRepository)ctx.getBean("personRepository");
- }
- /**
- *
- *<b>function:</b>添加
- * @author cuiran
- * @createDate 2012-12-12 16:11:01
- */
- public void insert(){
- Person p=new Person("cuiran",27);
- pr.insert(p);
- log.debug("添加成功");
- }
- /**
- *
- *<b>function:</b>根据输入的ID查找对象
- * @author cuiran
- * @createDate 2012-12-12 16:24:10
- */
- public void findOne(){
- String id="50c83cb552c2ceb0463177d6";
- Person p= pr.findOne(id);
- log.debug(p);
- }
- /**
- *
- *<b>function:</b>查询所有
- * @author cuiran
- * @createDate 2012-12-12 16:08:54
- */
- public void listAll(){
- List<Person> list=pr.findAll();
- log.debug("查询结果如下:");
- for (Person p:list){
- log.debug(p.toString());
- }
- }
- /**
- *
- *<b>function:</b>测试方法
- * @author cuiran
- * @createDate 2012-12-12 16:11:37
- */
- public void start(){
- init();
- //insert();
- //listAll();
- findOne();
- }
- /**
- *<b>function:</b>main函数
- * @author cuiran
- * @createDate 2012-12-12 11:54:30
- */
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- MongoTest t=new MongoTest();
- t.start();
- }
- }
- </span>
运行出现一下日志,就没什么问题。
- <span style="font-size:18px;color:#3366ff;">2012-12-12 16:23:59:DEBUG com.mongo.test.MongoTest - 开始启动
- 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-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]
- </span>
由于这些程序只是作为测试使用,对出现的问题, 欢迎留言咨询。谢谢大家。
相关推荐
本文将详细介绍如何在Spring项目中整合MongoDB,并重点讲解配置文件的编写。 #### 二、所需依赖 为了实现Spring与MongoDB的整合,首先需要在项目的`pom.xml`文件中添加以下依赖: ```xml <groupId>org.mongodb ...
spring4 整合MongoDB详细讲解项目源码 Mongo DB 是目前在IT行业非常流行的一种非关系型数据库 NoSql 其灵活的数据存储方式备受当前IT从业人员的青睐 Mongo DB很好的实现了面向对象的思想 OO思想 在Mongo DB中 每一条...
总之,MongoDB与Spring的整合涉及配置MongoDB连接、创建MongoTemplate实例,以及利用Spring Data MongoDB的Repository模式进行数据访问。正确配置和使用这些组件,可以帮助开发者快速构建高效、灵活的MongoDB驱动的...
Spring 和 MongoDB 是两个在现代Java开发中非常重要的技术。...在`springmvc_mongodb`这个项目中,你可能找到了关于如何在Spring MVC环境中配置和使用MongoDB的例子,这将有助于深入理解两者之间的整合。
本文将详细讲解如何整合Springboot 2.0、Mybatis-Plus 3.1.0、MongoDB以及Druid多数据源配置,并提供一个实际运行通过的实例。这个压缩包"springboot-mybatis-druid-mongodb-demo.zip"包含了完整的代码示例,适合...
在本项目中,我们主要探讨的是如何利用Spring Data、Spring ...通过以上步骤,我们可以构建一个高效、模块化、易于扩展的Spring Data整合Spring+Spring MVC项目,这不仅有利于提高开发效率,也有利于后期的维护和升级。
它可能还会涵盖Spring Boot的快速启动方式,以及如何利用Maven或Gradle构建工具整合Spring。 2. **核心容器**:Spring的核心在于其IoC(Inversion of Control,控制反转)和DI(Dependency Injection,依赖注入)...
下面将详细讲解这三个框架的基本概念、整合过程以及相关知识点。 1. **Spring**:Spring 是一个开源的 Java 应用程序框架,核心功能包括依赖注入(DI)和面向切面编程(AOP)。DI使得对象之间的依赖关系可以通过...
《跟我学Spring3》是一本深入浅出的Spring框架学习指南,主要针对Spring 3.x版本进行详细讲解。Spring作为Java领域最流行的轻量级框架,它的应用广泛且功能强大,涵盖依赖注入、AOP(面向切面编程)、数据访问、Web...
标题 "Spring_PDF" 暗示我们关注的是与Spring框架相关的PDF文档,可能是某个教程、指南或技术文章的集合。...文件“SpringGuide.pdf”应该包含这些内容的详细讲解,是学习和提升Spring技术的宝贵资料。
inclass”中,“01”可能是章节编号,暗示了文章可能逐步讲解Spring框架,而“sshchap04”可能指的是SSH(Struts + Spring + Hibernate)集成开发中的第四章内容,这可能涉及到Spring与Hibernate的整合,以及如何在...
16. **Spring与其他技术的集成**:讨论Spring与其他流行技术(如Redis、MongoDB等)的整合。 17. **最佳实践**:分享Spring开发的最佳实践,提高代码质量和可维护性。 18. **进阶主题**:深入研究Spring框架的高级...
书中将详细阐述如何配置Spring Security,实现用户认证、授权和OAuth2整合,确保应用的安全性。 在测试方面,Spring Boot提供了丰富的测试支持,包括单元测试、集成测试以及端到端测试。书中会教授如何编写这些测试...
视频详细讲解,需要的小伙伴自行百度网盘下载,链接见附件,永久有效。 1、课程简介 Spring框架是一系列应用框架的核心,也可以说是整合其他应用框架的基座。同时还是SpringBoot的基础。在当下的市场开发环境中,...
作者详细讲解了如何创建一个Spring Boot项目,从基本的“起步依赖”开始,通过Maven或Gradle构建系统引入必要的依赖。此外,书中还会介绍如何利用Spring Initializr在线生成项目模板,进一步提升开发效率。 Spring ...
每个章节都会深入讲解一个主题,并通过实例代码展示如何实际应用。通过学习这套教程,开发者不仅可以掌握Spring Boot的基本用法,还能了解如何在实际项目中灵活运用,提升开发能力。无论是初学者还是有经验的开发者...
此外,文档还会讲解Spring如何与其他技术结合,如Spring与Hibernate、MyBatis等持久层框架的整合,Spring Boot的使用,以及Spring Security对于应用安全的管理。Spring Boot简化了Spring应用的初始搭建以及开发过程...
《Pro Spring 5》会讲解如何使用Spring Security来保护应用程序,包括认证、授权、CSRF防护和OAuth2整合等内容。 最后,本书还将涉及Spring测试,包括单元测试、集成测试以及端到端测试的最佳实践,帮助开发者确保...