jackson-core icon indicating copy to clipboard operation
jackson-core copied to clipboard

Core part of Jackson that defines Streaming API as well as basic shared abstractions

Results 74 jackson-core issues
Sort by recently updated
recently updated
newest added

I have custom deserialization logic of protocol buffers and I took advantage of field names being interned to improve performance. https://github.com/curioswitch/protobuf-jackson/blob/main/src/main/java/org/curioswitch/common/protobuf/json/ParseSupport.java#L458 Actually, at the time I didn't know it is...

pr-needed

The time that the jackson-core library switched from using its own copy of the `fasterdoubleparser` code to the actual library this can cause JDK incompatibilities. The problem manifests itself if...

Jackson version (BOM): `2.15.2` While experimenting with `JsonPointer` in Spring Framework, I tried to build up on the existing `FilteringParserDelegate` and associated `JsonPointerBasedTokenFilter`. Unfortunately, this doesn't seem to work with...

has-failing-test
2.17

(note: follow up to remaining case from #1173) Looks like `JsonLocation` reported for input like: ``` {"isThisValidJson": FALSE} ``` is off so that reported position of error is at the...

2.17

During serialization, when using a custom serializer, the JsonPointer is inconsistent when serializing the first element. Instead of having `/myList/0` we get `/myList` This happens because we enter this part...

need-test-case
2.17

This is a follow-on from the discussion in #1151 . Currently the `JsonParser.Feature.INCLUDE_SOURCE_IN_LOCATION` setting can be used to choose whether to include source information as a part of the location...

Clears cache when limit of 100 reached. Can cause blocking - eg https://stackoverflow.com/questions/75616007/at-com-fasterxml-jackson-core-util-interncache-interninterncache-java54-in-bl LRUMap in jackson-databind used to do this but has now been changed to be a proper LRU...

Default buffer size is 8000 bytes which is not a power of 2. Update size to align with Java's default buffer size: 8192. The smaller buffers should be 2kb: 2048....

need-test-case