springboot mongo 不插入_class

本文介绍了一个Spring Boot项目中自定义MongoDB配置的方法。通过创建SpringMongoConfig类并使用@Bean注解来实例化MongoTemplate,连接到指定的MongoDB服务器地址(如192.168.200.100:27017),并设置数据库名为yywdb。此外,还展示了如何通过SimpleMongoDbFactory和MappingMongoConverter进行数据库工厂和类型映射配置,以实现MongoDB的数据操作。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

参考:https://www.2cto.com/database/201608/533434.html

//会忽略 springboot 配置文件里的数据库配置

@Configuration
public class SpringMongoConfig {
    public @Bean MongoTemplate mongoTemplate() throws Exception {
        //权限验证 MongoCredential
       // MongoCredential credential = MongoCredential.createCredential("root", "mydb", "root".toCharArray());
       // ServerAddress serverAddress = new ServerAddress("localhost", 27017);
        ServerAddress serverAddress = new ServerAddress("192.168.200.100", 27017);
        MongoClient mongoClient = new MongoClient(serverAddress);
        SimpleMongoDbFactory mongoDbFactory = new SimpleMongoDbFactory(mongoClient, "yywdb"); // yywdb 是数据库名
        DbRefResolver dbRefResolver = new DefaultDbRefResolver(mongoDbFactory);
        MappingMongoConverter converter = new MappingMongoConverter(dbRefResolver, new MongoMappingContext());
        //不插入_class
        converter.setTypeMapper(new DefaultMongoTypeMapper(null));
        MongoTemplate mongoTemplate = new MongoTemplate(mongoDbFactory, converter);
        return mongoTemplate;
    }
  
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值