Vyacheslav Artemyev
Vyacheslav Artemyev
@imanushin thanks for your contribution. Workaround for you case is: ```kotlin private data class Problematic(val id: Int, @get:JsonProperty("isDefault") val isDefault: Int) ``` @cowtowncoder the problem related to https://github.com/FasterXML/jackson-module-kotlin/issues/80. Based on...
@cowtowncoder adding this feature makes sense because for java it doesn't work also: ```java public class Github337Java { /* com.fasterxml.jackson.databind.exc.InvalidDefinitionException: No serializer found for class com.fasterxml.jackson.module.kotlin.test.github.Correct and no properties discovered...
Based on Java Beans specification (8.3 Design Patterns for Properties) `is`-getters are valid only for boolean properties. Have you ever had a request for such a feature in Jackson for...
@haspok sorry for such a long answer, but `ACCEPT_EMPTY_ARRAY_AS_NULL_OBJECT ` works as expected in this module: ```kotlin class Github73 { data class A(@JsonFormat(shape = JsonFormat.Shape.ARRAY) val p: Pair?) @Test fun...
issue https://github.com/viartemev/requestmapper/issues/253
There are places where binding can be done: 1. With annotation `@InitBinder` ``` @InitBinder public void initBinder(final WebDataBinder webdataBinder) { webdataBinder.registerCustomEditor(QuestionCategory.class, new QuestionCategoryConverter()); } ``` 2. Extends from `Converter`: ```...
@meidea could you explain more about your case? I can get the idea
I use space delimiter for splitting method and path. I can't get your idea about space :( 
@meidea I got it. Would you mind to make a PR for it? I can help you if you need.
Thanks to @stupdit1t for contribution, I will release a new version of plugin to the store if you can confirm that flow is working now. @Tomanow @wajncn @tareq021 @Nasller Sorry...