Mathieu Lachance

Results 4 issues of Mathieu Lachance

Hi @mjiderhamn , I'd like to leverage your excellent library though I'm not confortable with the System.gc that will be triggered if the -XX:+DisableExplicitGC jvm switch as not been turned...

Our application heavily rely on the following pattern: ``` @Component @Scope(BeanDefinition.SCOPE_PROTOTYPE) public class Prototype { ... } @Inject private Provider prototypeProvider; public Prototype getPrototype() { return prototypeProvider.get(); } ``` each...

Consider the following: ``` public class Person { @Min(0) private int id; } ``` when serialized to json schema, will output: ``` { "type" : "object", "id" : "urn:jsonschema:xxx:Person", "properties"...

According to : http://spacetelescope.github.io/understanding-json-schema/reference/generic.html#metadata along side "description" we also should be able to define the "title" property. For description, this is achievable using @JsonPropertyDescription("..."). We should consider adding another annotation...