欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

springboot整合mongoDB

程序员文章站 2022-07-12 23:14:50
...

springboot整合mongoDB

pom

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-data-mongodb</artifactId>
    </dependency>

yml配置

spring:
data:
mongodb:
host: 127.0.0.1
database: (数据库名)
port: 3306
username: root
password: root

实体类

springboot整合mongoDBaaa@qq.com(collection = “sch_department”) 数据库表名
aaa@qq.com(“school_code”) 字段名

controller

springboot整合mongoDB

service

springboot整合mongoDB