Skip to content

Instantly share code, notes, and snippets.

@sveinung
Created August 20, 2012 20:16
Show Gist options
  • Save sveinung/3407493 to your computer and use it in GitHub Desktop.
Save sveinung/3407493 to your computer and use it in GitHub Desktop.
Feature toggle example: Modernization
<% if (modernized.isActive()) { %>
<jsp:include page="page_modernized.jsp" />
<% } else { %>
<jsp:include page="page_legacy.jsp" />
<% } %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment