如何通过java驱动程序在mongodb中存储38位整数

Posted

技术标签:

【中文标题】如何通过java驱动程序在mongodb中存储38位整数【英文标题】:how to store integer with 38 digit in mongo db through java driver 【发布时间】:2016-03-16 12:30:30 【问题描述】:

我正在从 oracle 迁移到 mongo db,作为此迁移的一部分,我需要保护数据类型(不想将数字作为字符串存储在 mongo 中以启用适当的索引/聚合性能)。数字列之一在 oracle db 中,精度为 38(它可以有 38 位)和刻度 0(它的整数)。 我正在使用 java 将其持久化到 mongo 中,但是使用 Long.parseLong("") 解析数字字符串不会允许超过 19 位长的 Long.MAX_VALUE 并且 mongo db 驱动程序不支持 BigInteger。 那么如何在 mongo 中存储 38 位长数字,同时保持数据类型和使用 java 驱动程序呢?

import com.mongodb.MongoClient;
import com.mongodb.client.MongoCollection;
import com.mongodb.client.MongoDatabase;
import org.bson.Document;

public class Main 
public static void main(String[] args) 
    MongoClient mongoClient = new MongoClient();
    MongoDatabase db = mongoClient.getDatabase("test");
    MongoCollection<Document> migration = db.getCollection("migration");
    Document document = new Document("name","MAX_VALUE").append("number",Long.MAX_VALUE);
    migration.insertOne(document);


结果


"_id" : ObjectId("5669c0dfd64eab11860d8e83"),
"name" : "MAX_VALUE",
"number" : NumberLong(9223372036854775807)

如果我这样做了

Document document = new Document("name","20_DIGIT").append("number",Long.parseLong("12345678901234567890")); 

这会导致

Exception in thread "main" java.lang.NumberFormatException: For input string: "12345678901234567890"
at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
at java.lang.Long.parseLong(Long.java:592)
at java.lang.Long.parseLong(Long.java:631)
at Main.main(Main.java:13)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:140)

因为它的射程太远了

Document document = new Document("name","BIG_INTEGER").append("number",new BigInteger("12345678901234567890"));

将导致

Exception in thread "main" org.bson.codecs.configuration.CodecConfigurationException: Can't find a codec for class java.math.BigInteger.

附言我不打算使用实体映射/orm。

【问题讨论】:

【参考方案1】:

我认为不可能在 mongo 的单个字段中保存 38 位整数。查看 Mongo 的supported types,我们看到它们支持的最大整数是 64 位长。 64位数字的最大值为9223372036854775807,小于38位。

【讨论】:

所以这意味着您需要将其存储为字符串,然后在应用程序逻辑中将其转换回 BigInteger。

以上是关于如何通过java驱动程序在mongodb中存储38位整数的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 Java 对 MongoDB 中的文档进行批量更新?

如何从存储在 mongodb 中的对象中获取日期?

通过 GeoServer 在 MongoDB 中提供地理空间数据

用于存储位置数据(经纬度)和搜索的 postgresql 或 Mongodb?

Node.js - 在 Heroku 上使用 MongoHQ 连接到 MongoDB

在 mongoDB 中存储 java 8 LocalDate