我有以下 mongo 实体的 Pojo 类
public class Product {
@BsonProperty("_id")
@BsonId
private ObjectId id;
private String name;
private float price;
private String description;
}
当我按照以下代码获取 mongo 结果时
var item = Flowable.fromPublisher(this.repository.getCollection("product", Product.class).find()).blockingIterable();
id id 映射了这样的东西
但是,在数据库中,id 是这样的
如何以正确的方式映射此 id,我正在使用带有 java 15 的 Micronaut 框架