0

当更新到 jongo 1.3.0 时,我们从 MongoDB 读取文档时开始出现以下错误:

com.fasterxml.jackson.core.JsonGenerationException: BsonSerializer can only be used with BsonGenerator

经过一番测试,我发现使用时出现问题,@JsonTypeInfo并且MongoDB文档在type属性之前包含一个日期对象。鉴于:

@JsonTypeInfo(use = JsonTypeInfo.Id.NAME,
        include = JsonTypeInfo.As.EXISTING_PROPERTY,
        property = 'type',
        visible = true)
@JsonSubTypes([
        @JsonSubTypes.Type(name = 'a', value = A),
        @JsonSubTypes.Type(name = 'b', value = B)
])
abstract class Base {
    String string // For reference
    Date date
    String type
}

class A extends Base { A() { type = 'a' } }

class B extends Base { B() { type = 'b' } }

这个(spock)测试将失败

def mapper = new ObjectMapper(new BsonFactory()).registerModule(new BsonModule())
def bytes = mapper.writeValueAsBytes(original)

expect:
def parsed = mapper.readValue(bytes, Base)
parsed instanceof A // com.fasterxml.jackson.core.JsonGenerationException: BsonSerializer can only be used with BsonGenerator
parsed.string == original.string
parsed.date == original.date // parsed.date is null with 'de.undercouch:bson4jackson:2.8.0-SNAPSHOT'
parsed.type == original.type

where:
testCase                  | original
'A'                       | new A(string: 'string', date: new Date(), type: 'a') // fails
'String, Date, Type'      | [string: 'string', date: new Date(), type: 'a']      // fails
'String, null date, Type' | [string: 'string', date: null, type: 'a']
'String, Type, Date'      | [string: 'string', type: 'a', date: new Date()]
'Type, String, Date'      | [type: 'a', string: 'string', date: new Date()]

请注意,如果date为 null 或在type测试通过后出现。

我想更新 Jongo 和 Jackson,但我认为我不能保证我们数据库上的属性顺序。问题是能否解决问题。

  • 我尝试将 Jackson 更新到 2.8.6 和 2.8.7 但没有区别。
  • 当我尝试de.undercouch:bson4jackson:2.8.0-SNAPSHOT解析date后,如果它出现,它将为空type

2.8.0-SNAPSHOT 似乎已经解决了一个类似的错误:https ://github.com/michel-kraemer/bson4jackson/issues/67

我在这里发布了一个问题:https ://github.com/michel-kraemer/bson4jackson/issues/72

4

1 回答 1

0

确保排序不是必需的,因为内容将根据需要进行缓冲。但是,这确实引发了一个问题,因为虽然TokenBuffer实现了 base JsonGenerator,但它没有(也不能)实现 BSON 特定的子类型。

但我认为除了升级jackson-databindjackson-core2.8.6(这是有道理的;修复是在 2.8.3 左右)之外,您还需要更新版本的bson4jackson. 但是看起来还没有发布 2.8,只有 2.7。需要在您提到的要求发布的问题上添加注释。

于 2017-02-08T23:05:52.690 回答