Bean named ‘redisTemplate‘ is expected to be of type ‘org.springframework.data.redis.core....

Bean named 'redisTemplate' is expected to be of type 'org.springframework.data.redis.core.StringRedisTemplate' but was actually of type 'org.springframework.data.redis.core.RedisTemplate'

这个错误原因是:@Resource是默认取字段名进行按照名称注入

所以这里不能用redisTemplate,只能用stringRedisTemplate,即

猜你喜欢

转载自blog.csdn.net/crazy1013/article/details/125522042