[위듀] upstash redis + Spring boot

[issue] Cannot convert value of type 'org.springframework.data.redis.core.convert.MappingRedisConverter' to required type 'org.springframework.data.redis.core.mapping.RedisMappingContext': no matching editors or conversion strategy found
Jan 14, 2024
[위듀] upstash redis + Spring boot

Solution

  • pom.xml
## 기존 ## <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-redis</artifactId> </dependency>
## 변경 ## <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-redis</artifactId> <version>1.8.23.RELEASE</version> </dependency>
  • spring boot 버젼 문제로 최신 spring-data-redis 다운로드 시 발생.
  • 버젼 다운그레이드로 해결
spring boot version 확인 ?
 

Reference

Share article
RSSPowered by inblog