Redis – Spring boot: Bean and dynamic Qualifiers
Considering the following spring-boot snippet: // AppConfig.java @Configuration public class AppConfig { @Bean public PersonService users(ICache cache) { return new PersonServiceImpl(cache); } @Bean public ICache redis() { return new RedisCache(); } @Bean public ICache memory() { return new MemoryCache(); }…