*************************** APPLICATION FAILED TO START *************************** Description: Field jedisPool in com.mt.mtip.preclient.point.data.DataClient required a bean of type 'redis.clients.jedis.util.Pool' that could not be found. The injection point has the following annotations: - @org.springframework.beans.factory.annotation.Autowired(required=true) Action: Consider defining a bean of type 'redis.clients.jedis.util.Pool' in your configuration.
时间: 2023-08-22 16:06:24 浏览: 246
Android 中Failed to read key from keystore解决办法
5星 · 资源好评率100%
这是一个Spring Boot应用程序启动失败的错误提示,原因是在DataClient类中需要一个名为jedisPool的类型为redis.clients.jedis.util.Pool的Bean,但是在配置中找不到这个Bean。需要你在配置文件中定义一个名为jedisPool的Bean,并且类型为redis.clients.jedis.util.Pool,这样就可以解决错误了。
阅读全文