boon icon indicating copy to clipboard operation
boon copied to clipboard

Results 9 boon issues
Sort by recently updated
recently updated
newest added

bug in verifyValueFitsInNumber becauseof which Qbit incorrectly serializes longs

The following invalid Json numbers are parsed as numbers by Boon: `034` parsed as `34`, instead is invalid JSON, some other implementations parse it as an octal `28` that is...

https://github.com/boonproject/boon/issues/355 https://github.com/boonproject/boon/pull/356 This was reported and patched as part of Boon.

https://github.com/boonproject/boon/issues/352

Ever seen issues with stackOverflow error and DateTime in json parsing? Boon/QBit fail in a horrible way if you use a JODA DateTime. Exception in thread "WebSocketProtocolEncoder-4" java.lang.StackOverflowError ``` java...

Hi ``` @Override public TypeType type() { return TypeType.NUMBER; } ``` Is this intentional ? NumberValue reads in a Float/Double. However, the type will always return NUMBER instead of field...

Hi, While trying to find something that outperforms GSON, I found Boon and some pretty promising benchmarks: https://github.com/bura/json-benchmarks I'm currently working on a web service that takes in alot of...

As is, Boon won't be compatible w/ JDK9, as [JEP254](http://openjdk.java.net/jeps/254) implementation was indeed pushed into [master](http://hg.openjdk.java.net/jdk9/jdk9/jdk/file/906c3a20e42c/src/java.base/share/classes/java/lang). As a result, String is no longer backed by a char array, so `io.advantageous.boon.core.reflection.FastStringUtils`...

I have following code: ``` java package boonbug; import io.advantageous.boon.json.*; import java.io.*; public class BoonBug { public static void main(String[] args) throws IOException { FileWriter pw = new FileWriter("test"); JsonFactory.create().writeValue(pw,...