Skip to content
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

Merged
merged 4 commits into from
Feb 24, 2020
Merged

Conversation

smathangi
Copy link
Contributor

Change description

  1. NoArgsConstructor for deserialization
  2. added implements Serializable explicitly as some serializers are failing (Hazelcast)

Does this PR introduce a breaking change? (check one with "x")

[ ] Yes
[ x] No

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
import java.util.List;

@Getter
@Builder
@AllArgsConstructor
@NoArgsConstructor
Copy link
Contributor

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?

Copy link
Contributor Author

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 ...

Copy link
Contributor

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

Copy link
Contributor Author

@smathangi smathangi Feb 21, 2020

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.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor Author

@smathangi smathangi Feb 21, 2020

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.

Copy link
Contributor

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

Copy link
Contributor Author

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.

Copy link
Contributor

@timja timja left a 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.

@smathangi
Copy link
Contributor Author

jackson-module-java8

Sorry, I still didn't get how to resolve deserialization error .
Parameter-names module docs says if there are multiple visible constructors and there is no default constructor, @JsonCreator is required to select constructor for deserialization
https://github.com/FasterXML/jackson-modules-java8/tree/master/parameter-names

@timja
Copy link
Contributor

timja commented Feb 21, 2020

jackson-module-java8

Sorry, I still didn't get how to resolve deserialization error .
Parameter-names module docs says if there are multiple visible constructors and there is no default constructor, @JsonCreator is required to select constructor for deserialization
https://github.com/FasterXML/jackson-modules-java8/tree/master/parameter-names

yes but you don't need the json properties that you added.

@smathangi
Copy link
Contributor Author

jackson-module-java8

Sorry, I still didn't get how to resolve deserialization error .
Parameter-names module docs says if there are multiple visible constructors and there is no default constructor, @JsonCreator is required to select constructor for deserialization
https://github.com/FasterXML/jackson-modules-java8/tree/master/parameter-names

yes but you don't need the json properties that you added.

It's my bad; I was testing this in IntelliJ and -parameters is not enabled automatically from gradle build config. Removed @JsonCreator completely as it's not required from jackson-databind > 2.7 . Cheers Tim.

@smathangi smathangi merged commit e576b85 into master Feb 24, 2020
@smathangi smathangi deleted the smathangi-patch-1 branch February 24, 2020 09:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants