Skip to content

Instantly share code, notes, and snippets.

@altfatterz
Created June 28, 2014 21:18
Show Gist options
  • Save altfatterz/1fbcf6c70adc9a75b558 to your computer and use it in GitHub Desktop.
Save altfatterz/1fbcf6c70adc9a75b558 to your computer and use it in GitHub Desktop.
@Configuration
@EnableCaching
@Profile("hazelcast")
public class HazelcastConfiguration {
@Bean
HazelcastCacheManager hazelcastcacheManager() throws Exception {
return new HazelcastCacheManager(hazelcastInstance());
}
@Bean
HazelcastInstance hazelcastInstance() throws Exception {
return Hazelcast.newHazelcastInstance();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment