-
Notifications
You must be signed in to change notification settings - Fork 625
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Having @JsonDeserialize is causing mismatchinputexception after spring boot 3.4 and spring cloud 2024.0.0 upgrade #1239
Comments
Our project is failing becuase of below statement used ContextFunctionCatalogAutoConfiguration.java. Below setting in application.yml also not taking effect.its because of you are overriding it in your autoconfiguration. |
@olegz, in our applications, we are using field level deserialization(for primitive types) and it is failing because of this particular attribute is turned on in ContextFunctionCatalogAutoConfiguration.java. if not mandatory can you pls skip this mapper configurations in ContextFunctionCatalogAutoConfiguration.java ? In old code I see nothing is configured. |
This can be used as a work around |
Can you please try with 2024.0.1? |
Was trying to remember why it was added in the first place. . . I commented it for now in case it'll come back to me. |
Immediately after upgrade we started facing this issue. we use spring cloud function to read message from queue and spring cloud function takes care of creating pojo. in that pojo we have one customdeserlizer for a field which is causing exception if the input is missing incoming msg. if we remove jsondeserializer annotation it works fine.
If I remove JsonDeserlize annotation then it works fine.
@DaTa
@builder
public class TestClass implements Serializable{
}
com.fasterxml.jackson.databind.exc.MismatchedInputException: Trailing token (of type FIELD_NAME) found after value (bound as
com.fasterxml.jackson.databind.JsonNode
): not allowed as perDeserializationFeature.FAIL_ON_TRAILING_TOKENS
at [Source: REDACTED (
StreamReadFeature.INCLUDE_SOURCE_IN_LOCATION
disabled); line: 2, column: 1]at com.fasterxml.jackson.databind.exc.MismatchedInputException.from(MismatchedInputException.java:63)
at com.fasterxml.jackson.databind.DeserializationContext.reportTrailingTokens(DeserializationContext.java:1840)
at com.fasterxml.jackson.databind.ObjectMapper._verifyNoTrailingTokens(ObjectMapper.java:5025)
<============-> 94% EXECUTING [6m 41s]ind.ObjectMapper._readValue(ObjectMapper.java:4898)
at com.fasterxml.jackson.databind.ObjectMapper.readTree(ObjectMapper.java:3146)
at com.xxx.events.stream.listener.Deseril.deserialize(Deseril.java:25)
at com.xxx.events.stream.listener.Deseril.deserialize(Deseril.java:16)
The text was updated successfully, but these errors were encountered: