Spring Boot - Advanced Patterns
Given the following Spring Boot code snippet, what will be the output if the feature flag "betaFeature" is disabled?
if(featureFlagService.isFeatureEnabled("betaFeature")) {
System.out.println("Beta feature is ON");
} else {
System.out.println("Beta feature is OFF");
}