I\'m trying to publish a message to a channel using Spring data Redis using Jedis. Here is a very simple Java config:
@Bean(name=\"jedisConnectionFactory\")
This issue is caused by the Jedis version (2.7.2) not compatible with Spring Data Redis (1.5.0.RELEASE). I used 3 days facing the same issue before I get inspired by this post and comment. Jedis version (2.6.2) is working fine (although I hit other errors in my program, but at least it have some progress than the same error message)!
Thanks.