Strategy Pattern and Dependency Injection in Spring
I have an Strategy interface, that is implemented by StrategyA and StrategyB, both of them are defined as @Component's and they have an @Autowired attribute as well, how can I do to obtain an instance of one of them based on an String value?
This is my Controller's action, that should perform the strategy:
@RequestMapping("/blabla")
public void perform (@RequestParam String strategyName) {
Strategy strategy = (Strategy) /* Get the concrete Strategy based on st开发者_如何学JAVArategyName */;
strategy.doStuff ();
}
Thanks!
You can look it up programmatically:
private @Autowired BeanFactory beanFactory;
@RequestMapping("/blabla")
public void perform (@RequestParam String strategyName) {
Strategy strategy = beanFactory.getBean(strategyName, Strategy.class);
strategy.doStuff();
}
You could do it a fancier way using a custom WebArgumentResolver
, but that's a lot more trouble than it's worth.
精彩评论