使用@Autowired + Map 实现策略模式

创建接口

public interface UserService {
    String getName();
}

创建多个类实现上面的接口

实现一

import com.boot.service.UserService;
import org.springframework.stereotype.Service;

@Service("zhangsan")
public class ZhangsanUserServiceImpl implements UserService {
    @Override
    public String getName() {
        return "My name is zhangsan.";
    }
}

实现二


import com.boot.service.UserService;
import org.springframework.stereotype.Service;

@Service("lisi")
public class LisiUserServiceImpl implements UserService {
    
    @Override
    public String getName() {
        return "Hi my name is lisi.";
    }
}

提供接口

@RestController
@Slf4j
public class HelloWorldController {

   /**
     * map 的key:实例名,可以自己起,也可以用默认的,默认是类名
     * map 的value:实例对象
     */
    @Autowired
    private Map<String, UserService> userServiceMap;
    
    @GetMapping("userTest")
    public String getName(@RequestParam String name) {
        UserService userService = userServiceMap.get(name);
        String say = userService.getName();
        System.out.println(say);
        return say;
    }
}

调接口

GET http://localhost:8080/userTest?name=zhangsan 结果:My name is zhangsan.
GET http://localhost:8080/userTest?name=lisi  结果:Hi my name is lisi.

说明

在实现策略模式的时候,可以直接将类名起成策略的判断条件,这种不推荐。也可以另外维护一套策略与实现类的对应关系

posted @ 2024-03-11 09:49  品书读茶  阅读(116)  评论(0编辑  收藏  举报