Skip to content

Instantly share code, notes, and snippets.

@sveinung
Created August 27, 2012 19:06
Show Gist options
  • Save sveinung/3491380 to your computer and use it in GitHub Desktop.
Save sveinung/3491380 to your computer and use it in GitHub Desktop.
Feature toggle example: Spring
@Configuration
public class ToggledBeans {
@Bean
public Repository bean() {
return featureX.isActive() ? new JDBCRepository() : new HibernateRepository();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment