Springboot中實現(xiàn)策略模式+工廠模式
策略模式和工廠模式相信大家都比較熟悉,但是大家有沒有在springboot中實現(xiàn)策略和工廠模式?
具體策略模式和工廠模式的UML我就不給出來了,使用這個這兩個模式主要是防止程序中出現(xiàn)大量的IF ELSE IF ELSE....。接下來咱們直接實現(xiàn),項目結構圖:

工廠類FactoryStrategy負責創(chuàng)建策略的工廠,代碼比較簡單,比較關鍵的一點是AutoWired一個Map<String, Strategy> 這個會在初始化的時候將所有的Strategy自動加載到Map中,是不是很方便。使用concurrentHashMap是防止多線程操作的時候出現(xiàn)問題。同時還要注意@Service注解。
package com.hqs.pattern.factory;
import com.hqs.pattern.strategy.Strategy;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
/**
* @author huangqingshi
* @Date 2019-01-31
*/
@Service
public class FactoryForStrategy {
@Autowired
Map<String, Strategy> strategys = new ConcurrentHashMap<>(3);
public Strategy getStrategy(String component) throws Exception{
Strategy strategy = strategys.get(component);
if(strategy == null) {
throw new RuntimeException("no strategy defined");
}
return strategy;
}
}
接下來就是Strategy接口,就一個doOperation方法。
package com.hqs.pattern.strategy;
/**
* @author huangqingshi
* @Date 2019-01-31
*/
public interface Strategy {
String doOperation();
}
定義接口的實現(xiàn),我定義了三個, 都類似,這里我就放出一個來吧。Component里邊的one是指定其名字,這個會作為key放到Map strategys里邊。
package com.hqs.pattern.strategy.impl;
import com.hqs.pattern.strategy.Strategy;
import org.springframework.stereotype.Component;
/**
* @author huangqingshi
* @Date 2019-01-31
*/
@Component("one")
public class StrategyOne implements Strategy {
@Override
public String doOperation() {
return "one";
}
}
好了,寫一個Controller類,用于進行測試,當然我還是使用swagger,使用swagger的時候有個細節(jié),就是注意生產(chǎn)上一定不能打開,否則是個非??膳碌氖虑?。
package com.hqs.pattern.controller;
import com.hqs.pattern.factory.FactoryForStrategy;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
/**
* @author huangqingshi
* @Date 2019-01-31
*/
@Controller
public class StrategyController {
@Autowired
FactoryForStrategy factoryForStrategy;
@PostMapping("/strategy")
@ResponseBody
public String strategy(@RequestParam("key") String key) {
String result;
try {
result = factoryForStrategy.getStrategy(key).doOperation();
} catch (Exception e) {
result = e.getMessage();
}
return result;
}
}
打開swagger進行測試,輸入one,返回one。輸入four,返回no strategy defined。后續(xù)如果有新策略的話,直接實現(xiàn)即可。


推薦閱讀:
企業(yè)10大管理流程圖,數(shù)字化轉型從業(yè)者必備!
【中臺實踐】華為大數(shù)據(jù)中臺架構分享.pdf
評論
圖片
表情
