↧
Answer by Shailendra for Is there any way to store response entity in redis...
ResponseEntity is not Serializable. Better way is to cache at the service/DAO layer ( in your case getMostFollowedSubCategory method of subCategoryDao).
View ArticleIs there any way to store response entity in redis cache?
I've tried following code but got error - spring web ResponseEntity can't serialization. org.springframework.data.redis.serializer.SerializationException: Cannot serialize; nested exception is...
View Article