我的编程空间,编程开发者的网络收藏夹
学习永远不晚

SpringBoo中怎么t整合MongoDB

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

SpringBoo中怎么t整合MongoDB

这篇文章给大家介绍SpringBoo中怎么t整合MongoDB,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。

一、创建项目,选择依赖

仅选择Spring Web、Spring Data MongoDB即可

SpringBoo中怎么t整合MongoDB
SpringBoo中怎么t整合MongoDB
SpringBoo中怎么t整合MongoDB

二、引入相关依赖(非必要)

这里只是为了实体类的创建方便而引入lombok

<!-- 引入lombok --><dependency>    <groupId>org.projectlombok</groupId>    <artifactId>lombok</artifactId></dependency>

三、如果是第一次使用MongoDB,首先先创建用户

> use adminswitched to db admin> db.createUser({user:"zlfeng", pwd:"123456", roles:[{role:"readWriteAnyDatabase", db:"admin"}]});Successfully added user: {"user" : "zlfeng","roles" : [{"role" : "readWriteAnyDatabase","db" : "admin"}]}

MongoDB权限介绍

权限说明
read允许用户读取指定数据库
readWrite允许用户读写指定数据库
dbAdmin允许用户在指定数据库中执行管理函数,如索引创建、删除、查看统计或访问system.profile
userAdmin允许用户向system.users集合写入,可以在指定数据库中创建、删除和管理用户
clusterAdmin必须在admin数据库中定义,赋予用户所有分片和复制集相关函数的管理权限
readAnyDatabase必须在admin数据库中定义,赋予用户所有数据库的读权限
readWriteAnyDatabase必须在admin数据库中定义,赋予用户所有数据库的读写权限
userAdminAnyDatabase必须在admin数据库中定义,赋予用户所有数据库的userAdmin权限
dbAdminAnyDatabase必须在admin数据库中定义,赋予用户所有数据库的dbAdmin权限
root必须在admin数据库中定义,超级账号,超级权限

四、定义核心配置文件

# 登录用户所在的数据库spring.data.mongodb.authentication-database=admin# 数据库的ip地址spring.data.mongodb.host=192.168.133.142# MongoDB端口号spring.data.mongodb.port=27017# 用户账号spring.data.mongodb.username=zlfeng# 用户密码spring.data.mongodb.password=123456# 指定使用的数据库# 不必预先创建,不存在该数据库会自动创建spring.data.mongodb.database=db_student

五、创建实体类

package cn.byuan.entity;import lombok.AllArgsConstructor;import lombok.Data;import lombok.NoArgsConstructor;import lombok.experimental.Accessors;import org.springframework.data.annotation.Id;import java.io.Serializable;import java.util.Date;@NoArgsConstructor@AllArgsConstructor@Accessors(chain = true)@Datapublic class Student implements Serializable {    @Id// 必须指定id列    private String studentId;    private String studentName;    private Integer studentAge;    private Double studentScore;        private Date studentBirthday;}

六、创建dao层,这里的dao层有两种写法

(一)dao层写法一

编码部分

package cn.byuan.dao;import cn.byuan.entity.Student;import org.springframework.data.mongodb.repository.MongoRepository;public interface StudentDaoTypeOne extends MongoRepository<Student, String> {    //    可根据需求自己定义方法, 无需对方法进行实现    Student getAllByStudentName(String studentName);        }

SpringBoo中怎么t整合MongoDB

测试部分

在进行测试之前,我们先查询一下数据库,此时不存在db_student的库

SpringBoo中怎么t整合MongoDB

开始测试

package cn.byuan;import cn.byuan.dao.StudentDaoTypeOne;import cn.byuan.entity.Student;import org.junit.jupiter.api.Test;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.boot.test.context.SpringBootTest;import java.util.Date;import java.util.List;@SpringBootTestclass StudentDaoTypeOneTests {    @Autowired    private StudentDaoTypeOne studentDaoTypeOne;    @Test    void addOneStudent(){//        插入10行        for (Integer count = 0; count < 10; count++) {            Student student = new Student()                    .setStudentId("student_"+count) //如果自己不去设置id则系统会分配给一个id                    .setStudentName("Godfery"+count)                    .setStudentAge(count)                    .setStudentScore(98.5-count)                    .setStudentBirthday(new Date());            studentDaoTypeOne.save(student);        }    }    @Test    void deleteOneStudentByStudentId(){//        删除id为student_0的学生        studentDaoTypeOne.deleteById("student_0");    }    @Test    void updateOneStudent(){//        修改姓名为Godfery1的Student年龄为22        Student student = studentDaoTypeOne.getAllByStudentName("Godfery1");        student.setStudentAge(22);        studentDaoTypeOne.save(student);    }    @Test    void getOneStudentByStudentId(){        System.out.println(studentDaoTypeOne.findById("student_1"));    }    @Test    void getAllStudent(){        List<Student> studentList = studentDaoTypeOne.findAll();        studentList.forEach(System.out::println);    }}

SpringBoo中怎么t整合MongoDB

我们先来查看一下数据库

SpringBoo中怎么t整合MongoDB

进入数据库查看一下数据

SpringBoo中怎么t整合MongoDB

(二)dao层写法二

编码部分

接口部分

package cn.byuan.dao;import cn.byuan.entity.Student;import java.util.List;public interface StudentDaoTypeTwo {//    增加一位学生    void addOneStudent(Student student);//    根据id删除一位学生    void deleteOneStudentByStudentId(String studentId);//    修改一位学生的信息    void updateOneStudent(Student student);//    根据主键id获取一名学生    Student getOneStudentByStudentId(String studentId);//    获取全部学生    List<Student> getAllStudent();}

实现类

package cn.byuan.dao.imp;import cn.byuan.dao.StudentDaoTypeTwo;import cn.byuan.entity.Student;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.data.mongodb.core.MongoTemplate;import org.springframework.stereotype.Repository;import java.util.List;@Repositorypublic class StudentDaoTypeTwoImp implements StudentDaoTypeTwo {//    使用MongoTemplate模板类实现数据库操作    @Autowired    private MongoTemplate mongoTemplate;//    增加一位学生    public void addOneStudent(Student student){        mongoTemplate.save(student);    }//    根据id删除一位学生    public void deleteOneStudentByStudentId(String studentId){        Student student = mongoTemplate.findById(studentId, Student.class);        if(student != null){            mongoTemplate.remove(student);        }    }//    修改一位学生的信息    public void updateOneStudent(Student student){        mongoTemplate.save(student);    }//    根据主键id获取一名学生    public Student getOneStudentByStudentId(String studentId){        return mongoTemplate.findById(studentId, Student.class);    }//    获取全部学生    public List<Student> getAllStudent(){        return mongoTemplate.findAll(Student.class);    }}

测试部分

package cn.byuan;import cn.byuan.dao.StudentDaoTypeOne;import cn.byuan.dao.StudentDaoTypeTwo;import cn.byuan.entity.Student;import org.junit.jupiter.api.Test;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.boot.test.context.SpringBootTest;import java.util.Date;import java.util.List;@SpringBootTestclass StudentDaoTypeTwoTests {    @Autowired    private StudentDaoTypeTwo studentDaoTypeTwo;    @Test    void addOneStudent(){//        插入10行        for (Integer count = 0; count < 10; count++) {            Student student = new Student()                    .setStudentId("study_"+count) //如果自己不去设置id则系统会分配给一个id                    .setStudentName("Echo"+count)                    .setStudentAge(count)                    .setStudentScore(98.5-count)                    .setStudentBirthday(new Date());            studentDaoTypeTwo.addOneStudent(student);        }    }    @Test    void deleteOneStudentByStudentId(){//        删除id为study_0的学生        studentDaoTypeTwo.deleteOneStudentByStudentId("study_0");    }    @Test    void updateOneStudent(){//        修改id为study_1的Student年龄为21        Student student = studentDaoTypeTwo.getOneStudentByStudentId("study_1");        student.setStudentAge(21);        studentDaoTypeTwo.updateOneStudent(student);    }    @Test    void getOneStudentByStudentId(){        System.out.println(studentDaoTypeTwo.getOneStudentByStudentId("study_1"));    }    @Test    void getAllStudent(){        List<Student> studentList = studentDaoTypeTwo.getAllStudent();        studentList.forEach(System.out::println);    }}

SpringBoo中怎么t整合MongoDB

进入数据库查看一下数据

SpringBoo中怎么t整合MongoDB

关于SpringBoo中怎么t整合MongoDB就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

SpringBoo中怎么t整合MongoDB

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

SpringBoo中怎么t整合MongoDB

这篇文章给大家介绍SpringBoo中怎么t整合MongoDB,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。一、创建项目,选择依赖仅选择Spring Web、Spring Data MongoDB即可二、引入相关依赖(
2023-06-20

SpringBoot怎么整合Mongodb实现增删查改

今天小编给大家分享一下SpringBoot怎么整合Mongodb实现增删查改的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。一
2023-06-30

springboot整合mongodb的方法是什么

这篇文章主要介绍“springboot整合mongodb的方法是什么”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“springboot整合mongodb的方法是什么”文章能帮助大家解决问题。1.mo
2023-07-05

mongodb中怎么清空整张表

在 MongoDB 中清空整张表(集合)可以使用 db.collection.remove({}) 命令。以下是一个示例:假设有一个名为 users 的集合,要清空该集合,可以使用以下命令:db.users.remove({})这将删除
mongodb中怎么清空整张表
2024-04-09

SpringBoot中怎么整合Redis

SpringBoot中怎么整合Redis,针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。一、安装首先要在本地安装一个redis程序,安装过程十分简单(略过),安装完成后进入到
2023-06-16

SpringBoot中怎么整合SpringSecurity

SpringBoot中怎么整合SpringSecurity,很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。1.导包
2023-06-05

springboot 中怎么整合fluent mybatis

这篇文章给大家介绍springboot 中怎么整合fluent mybatis,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。1.导入pom依赖
2023-06-20

Spring Boot中怎么整合elasticsearch

今天小编给大家分享一下Spring Boot中怎么整合elasticsearch的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧
2023-06-05

c++中/t怎么用

c++ 中的 /t 字符是转义字符,表示制表符。它在字符串中将光标移到下一个制表位,创建对齐文本。使用方法包括在字符串中使用 "" 或 "" 来转义 /t,连续 /t 将跳转多个制表位,可以通过 std::ios::fmtflags 标志自
c++中/t怎么用
2024-04-26

SpringBoot2中怎么整合Kafka组件

SpringBoot2中怎么整合Kafka组件,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。一、搭建Kafka环境1、下载解压-- 下载wget http://mirror.b
2023-06-02

怎么将ChatGPT整合到Word中

这篇文章主要介绍“怎么将ChatGPT整合到Word中”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“怎么将ChatGPT整合到Word中”文章能帮助大家解决问题。引言自ChatGPT出现,各种基于它
2023-07-05

php中mongodb怎么重命名集合

在PHP中重命名MongoDB集合,可以使用MongoDB的command方法来执行renameCollection命令。以下是一个示例代码:
php中mongodb怎么重命名集合
2024-04-11

SpringBoot2中怎么整合ElasticJob框架

这篇文章将为大家详细讲解有关SpringBoot2中怎么整合ElasticJob框架,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。一、ElasticJob简介1、定时任务在前面的文章中,说过
2023-06-02

SpringBoot2中怎么整合Mybatis框架

SpringBoot2中怎么整合Mybatis框架,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。一、Mybatis框架1、mybatis简介MyBatis 是一款优秀的持久层框
2023-06-02

mongodb和redis怎么结合

mongodb 和 redis 结合使用MongoDB 和 Redis 都是流行的 NoSQL 数据库,它们具有不同的优势和功能,结合使用可以提供更强大的数据处理能力。为什么需要结合 MongoDB 和 Redis?MongoDB 是
mongodb和redis怎么结合
2024-05-30

SpringBoot怎么整合Pulsar

这篇文章主要介绍了SpringBoot怎么整合Pulsar的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇SpringBoot怎么整合Pulsar文章都会有所收获,下面我们一起来看看吧。一、添加pom.xml依赖
2023-07-02

java中的t怎么用

T表示返回值是一个泛型,传递啥,就返回啥类型的数据,而单独的T就是表示限制你传递的参数类型,这个案例中,通过一个泛型的返回方式,获取每一个集合中的第一个数据, 通过返回值 T 和T的两种方法实现。T 用法返回值,直接写T表示限制参数的类型,这种方法一般多用于共
java中的t怎么用
2019-02-09

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录