注解实现策略模式

注解实现策略模式

        • [1. 使用idea创建sprignboot项目](#1. 使用idea创建sprignboot项目)
        • [2. 创建策略接口](#2. 创建策略接口)
        • [3. 创建策略类型注解](#3. 创建策略类型注解)
        • [4. 创建两个具体策略类](#4. 创建两个具体策略类)
        • [5. 策略工厂类](#5. 策略工厂类)
        • [6. 使用](#6. 使用)
1. 使用idea创建sprignboot项目
2. 创建策略接口
java 复制代码
public interface Handler {

    Double callPrice(Double price);

}
3. 创建策略类型注解
java 复制代码
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Inherited
public @interface HandlerType {

    String type();
}
4. 创建两个具体策略类
java 复制代码
@HandlerType(type = "vip")
@Service
public class VipHandler implements Handler{
    @Override
    public Double callPrice(Double price) {
        return price*0.8;
    }
}
java 复制代码
@HandlerType(type="member")
@Service
public class MemberHandler implements Handler{
    @Override
    public Double callPrice(Double price) {
        return price;
    }
}
5. 策略工厂类
java 复制代码
@Component
public class HandlerFactory implements BeanFactoryPostProcessor {

    private static Map<String,Handler> handlerMap = new ConcurrentHashMap<>();
    @Override
    public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException {
        Map<String, Object> handlerBeans = beanFactory.getBeansWithAnnotation(HandlerType.class);
        Optional.ofNullable(handlerBeans).orElse(Collections.emptyMap())
                .forEach((name,bean) -> {
                    Class<?> clazz = bean.getClass();
                    HandlerType handlerType = clazz.getAnnotation(HandlerType.class);
                    handlerMap.put(handlerType.type(), (Handler) bean);
                });

    }

    public static Handler getHandler(String type){
        Handler handler = handlerMap.get(type);
        if (handler == null) {
            throw new RuntimeException("can not find handler");
        }
        return handler;
    }
}
6. 使用
java 复制代码
@SpringBootApplication
public class Application {

    public static void main(String[] args) {
        ConfigurableApplicationContext context = SpringApplication.run(Application.class, args);
        Handler vip = HandlerFactory.getHandler("vip");
        System.out.println(vip.callPrice(1000.0));
    }

}
相关推荐
7年老菜鸡1 小时前
策略模式(C++)三分钟读懂
c++·qt·策略模式
也无晴也无风雨13 小时前
代码中的设计模式-策略模式
设计模式·bash·策略模式
凉辰1 天前
设计模式 策略模式 场景Vue (技术提升)
vue.js·设计模式·策略模式
菜菜-plus1 天前
java设计模式之策略模式
java·设计模式·策略模式
XYX的Blog1 天前
设计模式09-行为型模式2(状态模式/策略模式/Java)
设计模式·状态模式·策略模式
Slow菜鸟8 天前
Spring 设计模式之策略模式
spring·设计模式·策略模式
刘鹏博.10 天前
SpringBoot支付回调枚举+策略+工厂模式
java·spring boot·简单工厂模式·策略模式
糖拌西红柿多放醋10 天前
SpringBoot利用InitializingBean实现策略模式
java·spring boot·spring·策略模式·模板方法模式
萧寂17311 天前
Nodejs使用pkg打包为可执行文件
策略模式
健康平安的活着11 天前
设计模式4-工厂模式&策略模式
设计模式·策略模式