Tatu Saloranta

Results 210 issues of Tatu Saloranta

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

(note: https://github.com/FasterXML/jackson-databind/issues/2020 is the background) Tuple types from https://www.javatuples.org/ do not work out of the box, both due to immutability which requires builder-based construction (or use of "mutant factory" methods),...

(for background see https://github.com/FasterXML/jackson-databind/issues/1387) As per title, would be nice to have a datatype module to support handling of CDI proxy classes. /cc @ljnelson

Although 'list' can give basic information on set of entries, it'd be good to have something for more complete statistics, up to and including checking number of copies accessible via...

(moved from: https://github.com/FasterXML/jackson-databind/issues/41 ) --- t would be nice to support polymorphism on schema generation. Currently, the generated schema doesn't provides information on subtypes with the above case . ```...

NOTE: cleaved off of #34 --- This bug seems not to be completely fixed. It doesn't throw a NPE anymore, but it doesn't generate the schema correctly either. It just...

(followup from: https://github.com/FasterXML/jackson-annotations/issues/73) With 2.7, there is new annotation `@JsonClassDescription`, and appropriate access via `AnnotationInstropector` (call "findClassDescription()" or such). It would make sense to use this to get description for...

Looks like `MapVisitor.java` is not doing anything with key type it gets via callback: ``` java @Override public void keyFormat(JsonFormatVisitable handler, JavaType keyType) throws JsonMappingException { // JSON Schema only...