By looking at your code, Inner POJO class is not having Getters/Setters or public variables. So it won't be eligible for Serialization/Deserialization. and also your inner POJO class needs to be static for jackson serialization. So if you are using lombok dependency in your project, it has to be lik...