skip to Main Content

Spring Boot Upgrade Redis – Null key returned for cache operation

After the spring 3.x upgrade Redis Cache gives Null key returned for cache operation spring-boot version: 3.2.2 <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> <version>5.1.0</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> <exclusions> <exclusion> <groupId>io.lettuce</groupId> <artifactId>lettuce-core</artifactId> </exclusion> </exclusions> </dependency> Cachable Method: @Cacheable(value = "user", key = "#username",…

VIEW QUESTION

Im goining to connect Mysql using Spring boot Java. but i gave errors. im new for this

Caused by: org.hibernate.exception.GenericJDBCException: Unable to open JDBC Connection for DDL execution [Access denied for user 'root'@'localhost' (using password: YES)] [n/a] Caused by: org.hibernate.exception.GenericJDBCException: Unable to open JDBC Connection for DDL execution [Access denied for user 'root'@'localhost'@'localhost' (using password: YES)] [n/a]…

VIEW QUESTION

Amazon web services – java.lang.NoSuchFieldError: CLIENT_ENDPOINT Error while connecting to kafka

I am getting error while connecting to kafka..Below are some lines of error It is an spring boot application 2024-02-21T14:02:03.419Z INFO 1 --- [customer-master-service] [ main] [ ] o.a.k.clients.consumer.KafkaConsumer : [Consumer clientId=consumer-customer-master-service-kafka-group-6, groupId=customer-master-service-kafka-group] Subscribed to topic(s): CAS_CUSTOMER_UPDATE 2024-02-21T14:02:03.461Z INFO 1…

VIEW QUESTION
Back To Top
Search