-
Notifications
You must be signed in to change notification settings - Fork 3
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
UserInfo deserialization / serialization fix #57
Conversation
import java.util.List; | ||
|
||
@Getter | ||
@Builder | ||
@AllArgsConstructor | ||
@NoArgsConstructor |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why do you need this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For deserialization. Otherwise i see error like below
com.fasterxml.jackson.databind.exc.InvalidDefinitionException: Cannot construct instance of uk.gov.hmcts.reform.idam.client.models.UserInfo (no Creators, like default construct, exist): cannot deserialize from Object value ...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
most likely your app is missing constructor parameters being added in the compile options
-parameters
it should be on by default in spring boot 2 i think though
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
even ObjectMapper.readValue(json, UserInfo.class)
giving same error.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
plenty of teams are using this, try add https://github.com/spring-projects/spring-boot/tree/master/spring-boot-project/spring-boot-starters/spring-boot-starter-json as a dependency
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
either it needs @JsonCreator or default constructor at least private.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i'd be happier with jsoncreator
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tried with spring-boot-starter-json
but same error.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
these json properties really shouldn't be needed and are a symptom of your application being misconfigured and not using the jackson-module-java8 correctly,
but not going to block you if you want to continue going down this route and it's just this one class you need the change in, not ok with modifying all the models for it.
Sorry, I still didn't get how to resolve deserialization error . |
yes but you don't need the json properties that you added. |
… and ParameterNamesModule.
It's my bad; I was testing this in IntelliJ and |
Change description
implements Serializable
explicitly as some serializers are failing (Hazelcast)Does this PR introduce a breaking change? (check one with "x")