热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

使用Spring操作MongoDB数据库

Springdata对MongoDB的操作也日趋成熟,只要配置好系统框架,其实后面的编码跟以前没什么区别,一样的实体,一样的查询。使用Springdata确保以下jar包被引用:spring-data-mongodb-1.0.0.RELEASE.jarspring-data-commons-1.2.0.RELEASE.

Spring data 对MongoDB的操作也日趋成熟,只要配置好系统框架,其实后面的编码跟以前没什么区别,一样的实体,一样的查询。

使用Spring data 确保以下jar包被引用:

spring-data-mongodb-1.0.0.RELEASE.jar

spring-data-commons-1.2.0.RELEASE.jar

aopalliance-1.0.0.jar

commons-logging-1.1.1.jar

mongo-java-driver-2.5.3.jar

spring-aop-3.0.7.RELEASE.jar

spring-asm-3.0.7.RELEASE.jar

spring-beans-3.0.7.RELEASE.jar

spring-context-3.0.7.RELEASE.jar

spring-core-3.0.7.RELEASE.jar

spring-expression-3.0.7.RELEASE.jar

详细配置见官方文档:http://static.springsource.org/spring-data/data-mongodb/docs/current/reference/html/

applicationContext.xml


          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">
     
    
        
    
    
        
        
        

其实到这里已经可以OK了,mongoTemplate已经提供了对MongoDB的各项操作。

为了操作方便我把基本的方法封装成一个Base的数据操作类,如下:

interface EntityDAO

package com.van.knowyou.base.dao;
import java.util.List;
public interface EntityDAO {
        /**
         * 保存.
         * @param entity
         */
        void save(T entity);
        /**
         * 删除.
         * @param entity
         */
        void delete(T entity);
        /**
         * 根据ID查找.
         * @param id
         */
        T findById(String id);
        /**
         * 查找列表.
         * @return
         */
        List list();
}

EntityDAOImplMongo

package com.van.knowyou.base.dao.impl;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.mongodb.core.MongoOperations;
import org.springframework.stereotype.Component;
import com.van.knowyou.base.dao.EntityDAO;
import com.van.knowyou.base.utils.TableUtils;
/**
 * EntityDAO的MongoDB实现方式。
 * @author Van
 * @date 2013-02-06
 * @param 
 */
@Component
public class EntityDAOImplMongo implements EntityDAO{
    @Autowired
    private MongoOperations mongoOperations;
    private String tableName;
    private Class entityClass;
    public EntityDAOImplMongo() {
        super();
    }
    public EntityDAOImplMongo(Class entityClass) {
        this.entityClass = entityClass;
        String className = this.entityClass.getName();
        /**根据实体类名称产生表名*/
        this.tableName=TableUtils.generateTableNameByClass(className);
    }
    @Override
    public void save(T entity){
        mongoOperations.save(entity,tableName);
    }
    @Override
    public void delete(T entity){
        mongoOperations.remove(entity,tableName);
    }
    @Override
    public T findById(String id){
        return mongoOperations.findById(id,entityClass,tableName);
    }
    @Override
    public List list(){
        return mongoOperations.findAll(entityClass,tableName);
    }
}

TableUtils 这个类也贴一下,因为MongoDB没有表的概念,所以需要根据实体为集合名一下名,我com.xx.User,那么我的集合名称为:t_user

package com.van.knowyou.base.utils;
/**
 * 数据表赋值类.
 * @author Van
 * @date 2013-02-06
 */
public class TableUtils {
        /**数据表前缀*/
        private static final String TABLE_PREFIX="t_";
        /**
         * 根据实体Class名称产生对应的数据表名称。
         * @param className
         * @return
         */
        public static String generateTableNameByClass(String className){
                int index = className.lastIndexOf(".")+1;
                String tableName=className.substring(index,className.length());
                return TABLE_PREFIX+tableName.toLowerCase();
        }
}

以上的Base的数据操作类,下面是具体实现类的引用:

interface UserDAO

package com.van.knowyou.user.dao;
import com.van.knowyou.base.dao.EntityDAO;
import com.van.knowyou.user.entity.User;
public interface UserDAO extends EntityDAO{
}
UserDAOImpl (这里需要注意以下,需要重写父类的构造,将具体的Class传入)
package com.van.knowyou.user.dao.impl;
import org.springframework.stereotype.Component;
import com.van.knowyou.base.dao.impl.EntityDAOImplMongo;
import com.van.knowyou.user.dao.UserDAO;
import com.van.knowyou.user.entity.User;
@Component
public class UserDAOImpl extends EntityDAOImplMongo implements UserDAO{
        public UserDAOImpl() {
                super(User.class);
        }
}

其它Service类就不写了,直接通过接口调用方法就行。

另外,刚开始研究MongoDB,有些思路还不是很成熟,希望在这方面有经验的朋友不吝赐教,给我留言,谢谢。


推荐阅读
author-avatar
cl有倪幸福
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有