gpt4 book ai didi

java - 如何使用 Messagepack 序列化 JSON 文档(找不到类 java.lang.Object 的模板)?

转载 作者:行者123 更新时间:2023-12-01 04:22:06 26 4
gpt4 key购买 nike

我计划在我们的项目中使用 Messagepack。目前,我们在项目中使用 JSON,并将序列化 JSON 文档写入 Cassandra。现在我们正在考虑使用Messagepack,这是一种高效的二进制序列化格式。

我正在尝试找到一个很好的示例,该示例向我展示如何在 JSON 文档上使用 Messagepack,但我还找不到它。

下面是我的主类代码,它将使用 Value 类使用 Jackson 制作 JSON 文档,然后使用 ObjectMapper 序列化 JSON。

public static void main(String[] args) {

Map<String, Object> properties = new HashMap<String, Object>();
properties.put("id", 123);
properties.put("test", 200);
properties.put("marks", 100);

Value val = new Value();
val.setProperties(properties);

MessagePack msgpack = new MessagePack();
// Serialize
byte[] raw = msgpack.write(av);

System.out.println(raw);

// deserialize
Value actual = new MessagePack().read(raw, Value.class);

System.out.println(actual);
}

下面是我的 Value 类,它使用 Jackson 制作 JSON 文档,并使用 ObjectMapper 序列化文档,还使用 ​​Messagepack。

@JsonPropertyOrder(value = { "v" })
@Message
public class Value {

private Map<String, Object> properties;

/**
* Default constructor.
*/
@JsonCreator
public Value() {
properties = new HashMap<String, Object>();
}


/**
* Gets the properties of this attribute value.
* @return the properties of this attribute value.
*/
@JsonProperty("v")
public Map<String, Object> getProperties() {
return properties;
}

/**
* Sets the properties of this attribute value.
* @param v the properties of this attribute value to set
*/
@JsonProperty("v")
public void setProperties(Map<String, Object> v) {
properties = v;
}


@Override
public String toString() {
try {
return new ObjectMapper().writerWithDefaultPrettyPrinter().writeValueAsString(this);
} catch (Exception e) {
// log exception
}

return ToStringBuilder.reflectionToString(this);
}
}

但是,我不确定如何在这个 JSON 文档上使用 Messagepack?谁能给我一些例子吗?

但我想,让我们尝试一下,每当我尝试在上面的代码中使用这样的 Messagepack 时 -

    MessagePack msgpack = new MessagePack();
// Serialize
byte[] raw = msgpack.write(av);

我总是遇到如下异常-

Exception in thread "main" org.msgpack.MessageTypeException: Cannot find template for class java.lang.Object class.  Try to add @Message annotation to the class or call MessagePack.register(Type).

我相信 MessagePack 不允许用户序列化 java.lang.Object 类型的变量,但就我而言,不可能将属性类型替换为某些原始类型。

我在 HashMap 中使用 Object,我需要它像那样..

最佳答案

您是否考虑过使用 Smile 而不是尝试 MessagePack ,这是一种高效、100% JSON API 兼容的二进制数据格式。它应该匹配或超过 MessagePack 速度,并产生稍微更紧凑的输出。 Jackson 的实现位于:

https://github.com/FasterXML/jackson-dataformat-smile

这将“正常工作”对象格式。所以代替:

String json = new ObjectMapper().writeValueAsString(value);

你会使用

byte[] smileEncoded = new ObjectMapper(new SmileFactory()).writeValueAsBytes(value);

所有 Jackson 代码的工作方式都与 JSON 类似,包括 JAX-RS 提供程序、数据类型(Guava、Joda、Hibernate 等)等。因此,您不会失去 JSON 的便利性(除了与所有二进制格式一样,Smile 的可读性不如 JSON),但可以获得存储和性能效率。

关于java - 如何使用 Messagepack 序列化 JSON 文档(找不到类 java.lang.Object 的模板)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18809578/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com