Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 315 Bytes

README.md

File metadata and controls

15 lines (9 loc) · 315 Bytes

Feature Toggles

Use with thymeleaf

<span th:if="${!feature.isActive('ORDER_SPACESHIP')}">ORDER_SPACESHIP feature is disabled</span>

or as an annotation

    @FeatureToggle("ORDER_SPACESHIP")
    @GetMapping("/spaceship")
    public String spaceship() {

        return "index";
    }