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

Stand-alone data-binding module designed as a light-weight (and -featured) alternative to `jackson-databind`: will only deal with "Maps, Lists, Strings, wrappers and Java Beans" (jr-objects), or simpl...

Results 8 jackson-jr issues
Sort by recently updated
recently updated
newest added

A small effort to reduce complexity. P.S. sorry for formatting, 😂 Reasoning: BeanPropertyIntrospector is the brain of this library, and it does too much with too little documentation : 1....

Issue: #48 Providing Support for java.util.Date, via Extensions.

Hi, I'm writing a list of instances of my class that has a calendar field. ``` File file = new File(context.getFilesDir(), fileName); try { JSON.std.write(listOfObjects, file); ``` Writing works just...

I am sorry but I can't provide more information. My guess this error happend when using JSON.asString to serialize a JsrValue object. The jackson-jr version is 2.11.2. ``` java.lang.StackOverflowError at...

pr-welcome

As far as I understand afterburner can't be used with jackson-jr. Is there any plan to "port" afterburner?

One popular way of creating value type instances is that of using Builder-style construction; especially with frameworks such as Lombok and Immutables. It would be great if jackson-jr supported this...

``` java public enum GreetingType { ENGLISH, CHINESE, HAWAIIAN; } public class Greeting { private String word; public void setWord(String word) { this.word = word; } public String getWord() {...

It would be nice to allow reading a subset of document, similar to full Jackson's Value v = mapper.readerFor(Value.class).at("/some/path").readValue(source);

3.x