[jackson-user] Re: convertValue ignore anySetter/anyGettter

2023-08-12 Thread 김주혁
Hello Ken, To make things clear, a few questions. - Meaning of "to strip any additional properties before writing an object". Are you looking to exclude `additionalProperties` only during serialization, but include in deserialization? - Is the primary intent to generate a JSON

[jackson-user] Re: Java version error with doubleparser class on java 1.8 with latest release

2023-08-11 Thread 김주혁
Did you build using an IDE? What was its configured the runtime/compiler version? Build errors with such message mostly comes from an IDE. If IntelliJ menu is at [ File -> Project Structure -> Project Settings -> SDK ]. Just for a reference, I just pulled latest jackson-core:2.15 version and

Re: [jackson-user] RFE: Make MAX_ERROR_TOKEN_LENGTH configurable

2023-08-03 Thread 김주혁
This has been resolved by https://github.com/FasterXML/jackson-core/issues/1066, in Jackson 2.16. On Sunday, June 11, 2023 at 2:17:20 PM UTC+9 Joo Hyuk Kim (김주혁) wrote: > FYI, made a PR https://github.com/FasterXML/jackson-core/pull/1043  > > On Sunday, June 11, 2023 at 8:48:25 AM U

[jackson-user] Re: 2.12.7 to 2.13.5 Behavioural Change

2023-06-28 Thread 김주혁
This is not a solution, but beware that starting from Jackson 2.10, `ObjectMapper.enableDefaultTyping` has been deprecated and `ObjectMapper.enableDefaultTyping` internally calls `activateDefaultTyping()`. On Wednesday, June 28, 2023 at 4:22:40 AM UTC+9 Martin Samm wrote: > So, i have an

Re: [jackson-user] RFE: Make MAX_ERROR_TOKEN_LENGTH configurable

2023-06-10 Thread 김주혁
FYI, made a PR https://github.com/FasterXML/jackson-core/pull/1043  On Sunday, June 11, 2023 at 8:48:25 AM UTC+9 Tatu Saloranta wrote: > On Sat, Jun 10, 2023 at 7:04 AM Joo Hyuk Kim (김주혁) > wrote: > > > > I will try to implement the configuration. If that's okay?

Re: [jackson-user] RFE: Make MAX_ERROR_TOKEN_LENGTH configurable

2023-06-10 Thread 김주혁
I will try to implement the configuration. If that's okay?  On Wednesday, June 7, 2023 at 3:53:08 AM UTC+9 Tatu Saloranta wrote: > Thank you sharing this, it makes sense (wrt newly added functionality > in location, content source). > > -+ Tatu +- > > On Tue, Jun 6, 2023 at 6:03 AM Gili Tzabari

Re: [jackson-user] NoSuchMethodError: com.fasterxml.jackson.core.JsonParser.getReadCapabilities()

2023-06-07 Thread 김주혁
This definitely sounds like transitive dependency issue 沈. What I can suggest (sadly not a solution) is do some searching around maven how to specify dep. version, override, etc.. On Wednesday, June 7, 2023 at 4:16:48 AM UTC+9 Tatu Saloranta wrote: > On Tue, Jun 6, 2023 at 12:04 PM Ted Yu

Re: [jackson-user] Expression Tree

2023-05-04 Thread 김주혁
I am doing quite similar stuff at my current day job  Hope My suggestions can help. 1# “NO” to using a custom de/serializer. I started using @JsonTypeInfo at work to avoid exactly that. Having to write custom de/serializers for every DTO class. 2# Use Id.Name instead. I suggest to