So I have two beans for redis connection, and I am trying to specify certain times to use redisB. If I am correct, I need to put @Qualifier("redisB") somewhere, but I am not sure where to put it.
First bean
@Bean("default")@Primarypublic LettuceConnectionFactory redisConnectionFactory(){...}
Second bean
@Bean("redisB")public LettuceConnectionFactory redisConnectionFactory(final RedisProperties redisProperties){...}