Failed to introspect Class [org.springframework.data.redis.connection.jedis.JedisConnectionFactory]

今天在學習springmvc+redis的時候,程序運行出現如下錯誤;原因是redis jar版本不匹配的問題,推薦如下版本的jar包。感興趣的朋友可以嘗試其他版本。

org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘connectionFactory’: Lookup method resolution failed; nested exception is java.lang.IllegalStateException: Failed to introspect Class [org.springframework.data.redis.connection.jedis.JedisConnectionFactory] from ClassLoader [ParallelWebappClassLoader

<dependency>
    <groupId>redis.clients</groupId>
    <artifactId>jedis</artifactId>
    <version>2.4.2</version>
</dependency>
<dependency>
    <groupId>org.springframework.data</groupId>
    <artifactId>spring-data-redis</artifactId>
    <version>1.3.0.RELEASE</version>
</dependency>
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章