emotional developer/detect-server
Feature Toggle - togglz
성게군.
2020. 10. 20. 00:05
반응형
개요
- 기능별로 서비스에 적용 유무를 제어할 필요가 있다.
- api version up, 특정 기능을 중지 해야 할떄.
- 이런 설계를 Feature Toggle 이란 패턴 정의 됨
- https://martinfowler.com/bliki/FeatureToggle.html
- 해당 패턴을 구현한 프레임워크 선정
- https://github.com/togglz/togglz
- 타프로젝트 대비 가장 최근 까지 활발
- springboot에 적용이 가능
- web 관리 console 이 존재
- 각 toggle의 정보를 file or db or nosql 에 저장 가능
- sample
Manage feature flags in Spring Boot application using Togglz
Feature flags, also known as feature toggles, are a powerful technique that enables developers to switch certain features on and off at…
medium.com
반응형