org.springframework.data.redis.connection.RedisConnectionFactory' が見つかりませんでした
「redisTemplate」という名前の Bean の作成中にエラーが発生しましたクラスパスリソースで定義されています
jedis 依存関係を導入しなかったため、エラーが発生しました。もう 1 つの理由は、jedis と spring-boot-starter-data-redis の Maven 依存関係のバージョンに互換性がないことです。これは一般的な問題です。 JedisConnectionFactory を作成できない場合も同様です。
問題を解決するには、jedis の依存関係を導入するだけです,
<!--redis缓存--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> <!--spring boot2.x以上版本需要引入,不然启动会报错!--> <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> </dependency>
やり直し
以上がSpringBoot が Redis を統合し、エラーを報告した場合はどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。