四、Springboot连接mongodb

Springboot连接mongodb博客

Springboot连接mongodb,mongodb是一个非关系型数据库,文档型数据库,存储的内容是JSON格式的文档,文档中可以包含各种类型的数据。
Springboot连接mongodb需要引入mongoDB的驱动依赖,在pom.xml中添加:

<dependencies>
    <dependency>
        <groupId>org.springframework.bootgroupId>
        <artifactId>spring-boot-starter-data-mongodbartifactId>
    dependency>
dependencies>

在application.properties中添加mongoDB的连接配置:

spring.data.mongodb.host=localhost
spring.data.mongo

你可能感兴趣的:(MongoDB,mongodb,spring,boot,java)