ClassCastException: with unnamed module of loader 'app': Spring Data Redis
I am working on a small demo project for Redis and Spring Boot. But for the following GET endpoints I am getting ClassCastException.- @GetMapping("/all") public List<Product> getAllProducts(){ return productRepository.findAll(); } @GetMapping("/product/{id}") public Product finProduct(@PathVariable int id){ return productRepository.findProductById(id); } Serivces-…