2.27. gson
marshal POJO,使用 Gson
2.27.1. 内部内容
有关使用和配置详情,请参阅上述链接。
2.27.2. Maven 协调
在 code.quarkus.redhat.com 上创建一个具有此扩展名的新项目
或者在现有项目中添加协调:
<dependency> <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-gson</artifactId> </dependency>
2.27.3. 其他 Camel Quarkus 配置
2.27.3.1. 原生模式的 marshaling/Unmarshaling 对象
当以原生模式 marshaling/unmarshaling 对象时,需要 注册 所有序列化类来反映。因此,当使用 GsonDataFormat.setUnmarshalType (…)
时,GsonDataFormat.setUnmarshalTypeName (…)
,甚至 GsonDataFormat.setUnmarshalGenericType (…)
、unmarshal 类型以及子字段类型应注册。请参见此集成测试中的工作示例。