You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I ve been struggling for a couple of days to find a solution for a problem am facing. I searched through the net and i was really exhausted without any results ! Until I found it on stackoverflow in an unsolved question link
So to explain the issue , here is the environment :
Two microservices A and B
Both have dependencies spring boot and spring data redis version 2.3.8.RELEASE
A : Store a list of Event in Redis (example 100 event)
B : Fetch all events : eventRepository.findAll()
Result : List of nulls (example 100 null element)
The Fixe i made was to extract a lib and make sure the entity Event is always in the same package.
TypeAlias("EVENT"): Do nothing