Spring Boot: Strategy Design Pattern - Convenience and Limitation

You might have already used the strategy pattern in relationship with Spring Boot where it is very convenient to use.

You simply define an interface for example (I use the prefixing I only in these examples for clarity):

1public interface IOneStrategy {
2  void executeTheThing();
3}

Define some implementations like this:

1@Service("FIRST")
2public class OneStrategyFirst implements IOneStrategy {
3
4  @Override
5  public void executeTheThing() {
6    System.out.println("OneStrategyFirst.executeTheThing");
7  }
8}

Now you can simply implement a service which will execute the appropriate strategy based on the given name which looks similar like this:

 1@Service
 2public class ExecuteStrategyOne {
 3  private Map<String, IOneStrategy> strategies;
 4
 5  public ExecuteStrategyOne(Map<String, IOneStrategy> strategies) {
 6    this.strategies = strategies;
 7  }
 8
 9  public void executeStrategyOne(String name) {
10    if (!strategies.containsKey(name)) {
11      throw new IllegalArgumentException("The strategy " + name + " does not exist.");
12    }
13    strategies.get(name).executeTheThing();
14  }
15   
16}

In real world you make several implementations of the strategy interface like OneStrategyFirst, OneStrategySecond and OneStrategyThird. Sometimes the usage is to use the parameter of executeStrategyOne which is provided by a REST API or some other domain specific code which needs different implementations.

The convenience here is that Spring Boot (Spring Framework to be more accurate) handles the injection of the different implementation into the strategies Map within ExecuteStrategyOne via the constructor. This results in a Map where the key is the value which is given by @Service("FIRST") and the value of the map contains an instantiates class of every implementation of the interface IOneStrategy which can be found.

Really convenient.

In real life it happens that you need to have a different strategy which use the same keys as FIRST, SECOND and THIRD in the examples? Let us define the following:

1@Service("FIRST")
2public class TwoStrategyFirst implements ITwoStrategy {
3
4  @Override
5  public void executeTheThing() {
6    System.out.println("TwoStrategyFirst.executeTheThing");
7  }
8}

If you try to start that Spring Boot application you will see an exception like this:

1Caused by: org.springframework.context.annotation.ConflictingBeanDefinitionException: 
2Annotation-specified bean name 'FIRST' for bean class [com.soebes.examples.strategies.functions.two.TwoStrategyFirst] 
3conflicts with existing, non-compatible bean definition of same name and class 
4[com.soebes.examples.strategies.functions.one.OneStrategyFirst]
5	at org.springframework.context.annotation.ClassPathBeanDefinitionScanner.checkCandidate(ClassPathBeanDefinitionScanner.java:349) ~[spring-context-5.2.9.RELEASE.jar:5.2.9.RELEASE]
6	at org.springframework.context.annotation.ClassPathBeanDefinitionScanner.doScan(ClassPathBeanDefinitionScanner.java:287) ~[spring-context-5.2.9.RELEASE.jar:5.2.9.RELEASE]

So what can we do to solve the problem without losing much of the convenience which Spring Boot provides us here?

First we have to define in each of the strategy implementation class the annotations like this:

1@Service
2@Qualifier("FIRST")
3public class TwoStrategyFirst implements ITwoStrategy {
4
5  @Override
6  public void executeTheThing() {
7    System.out.println("TwoStrategyFirst.executeTheThing");
8  }
9}

By using the key in a different annotation we prevent the duplication of the bean names in contradiction to use @Service("FIRST") instead. The usage of @Qualifier("FIRST") gives us a criteria to handle that different.

Now we have to change the ExecuteStrategyOne class like the following:

 1@Service
 2public class ExecuteStrategyOne {
 3
 4  private Map<String, IOneStrategy> strategies;
 5
 6  public ExecuteStrategyOne(List<IOneStrategy> strategies) {
 7    this.strategies = strategies.stream()
 8        .collect(
 9            toMap(k -> k.getClass().getDeclaredAnnotation(Qualifier.class).value(), 
10                  Function.identity()));
11  }
12  ...
13}

I would like to emphasis the usage of the constructor parameter List<IOneStrategy> strategies instead of the previously used Map<String, IOneStrategy> strategies which is a convenience to get a list of all implementations off the given interface into that list by Spring Boot. Now we need to translate that into a map with the key we have defined by using @Qualifier annotation. The whole thing can be solved by a stream like this:

1this.strategies = strategies
2  .stream()
3  .collect(
4    Collectors.toMap(k -> k.getClass().getDeclaredAnnotation(Qualifier.class).value(), 
5                     Function.identity()));

We go through the implementations and extract the annotation @Qualifier and read out the value() which is the key we want to have. We collect the result by using the Collectors.toMap into a Map and assign the result to the instance variable private Map<String, IOneStrategy> strategies;. Depending on your need it is of course possible to define the instance variable as final and you can create an unmodifiable map by using the appropriate Collectors.toUnmodifiableMap instead of the toMap(..) if needed.

So with a few changes in the code we can easily solve the problem of having different strategies which using the same keys in our code.

The given code is available as a full working example on GitHub.