Tatu Saloranta

Results 200 issues of Tatu Saloranta

Looks like "no-metainf" classifier variants (see #39) do not include `module-info.class`. It would probably be good if they could include that, although as @GedMarc mentioned, there is the problem of...

Once databind adds support for reading a sub-tree: https://github.com/FasterXML/jackson-databind/issues/820 it would make sense to expose this from JAX-RS endpoint as well. A new annotation, something like: ``` java @Path("/api") public...

Now that `@JsonFilter` annotation is applicable to properties (not just classes), it would make sense to allow its use for JAX-RS endpoints as well.

Need to figure out how to configure aspects like whether first line is to be taken as schema. But otherwise should be relatively easy.

Dropwizard JAX-RS provider seems to add special handling to make anything annotated with `@JsonIgnoreType` (that is, any endpoint annotated) to be considered "untouchable", that is, not to be processed using...

A user requested ability to add linefeed after serialized JSON Object; mostly to make it easier to see response via curl. This seems easy enough with a togglable feature. One...

(moved from [https://jira.codehaus.org/browse/JACKSON-681]) So, basically it might be useful to allow provider to specify Object instance to update, instead of creating a new one. At first this can be as...

Some Jackson annotations are already supported for JAX-RS endpoints (methods), but not all. One that is not yet supported is `@JsonSerialize`. It might be easy enough to add support, since...

As the main task for JSTEP-1 (https://github.com/FasterXML/jackson-future-ideas/wiki/JSTEP-1) we need to: Change Maven package group id from "com.fasterxml.jackson.core" to "tools.jackson.core" Change Java Package name from "com.fasterxml.jackson.core" to "tools.jackson.core" (and so on...

(moved from https://github.com/FasterXML/jackson-datatype-guava/issues/51 by @devinrsmith) Currently, multisets' serialization size is proportional to Multiset.size() as opposed to Multiset.entrySet().size(). For example, if I have do Multiset.setCount("my_key", 1000), "my_key" is repeated 1000 times...

guava
good first issue