Mongo之SpringBoot集成——配置MongoDB去掉_class字段

本文介绍了在SpringBoot项目中集成MongoDB时,如何通过配置去掉默认保存的_class字段,以满足特定业务需求。详细讲述了问题的情景及提供了解决方案的代码实现。
摘要由CSDN通过智能技术生成

一、情景

SpringBoot项目中,引入Mongo,项目启动时,会自动创建配置的相关Collection信息。如果代码中有Document保存信息,则会自动创建Document及相关字段,默认创建的字段包括字段:_class。根据业务需求,则不需要保存该字段。

二、代码实现

设置Mongo配置信息

import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.NoSuchBeanDefinitionException;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.mongodb.MongoDbFactory;
import org.springframework.data.mongodb.core.convert.*;
import org.springframework.data.mongodb.core.mapping.MongoMappingContext;

/**
 * @description:
 * When using spring data mongo it by default adds a _class key to your collection to be able to handle inheritance.
 * But if your domain model is simple and flat, you can remove it by overriding the default MappingMongoConverter
 
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值