当更新到 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