org.springframework.data.gemfire.LocalRegionFactoryBean Java Examples

The following examples show how to use org.springframework.data.gemfire.LocalRegionFactoryBean. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: GemfireConfiguration.java    From tutorials with MIT License 5 votes vote down vote up
@Bean(name="employee")
@Autowired
LocalRegionFactoryBean<String, Employee> getEmployee(final GemFireCache cache) {
    LocalRegionFactoryBean<String, Employee> employeeRegion = new LocalRegionFactoryBean<String, Employee>();
    employeeRegion.setCache(cache);
    employeeRegion.setClose(false);
    employeeRegion.setName("employee");
    employeeRegion.setPersistent(false);
    employeeRegion.setDataPolicy(DataPolicy.PRELOADED);
    return employeeRegion;
}
 
Example #2
Source File: GemfireCacheConfig.java    From spring4-sandbox with Apache License 2.0 5 votes vote down vote up
@Bean
LocalRegionFactoryBean<String, Conference> localRegionFactory(final GemFireCache cache) {
	return new LocalRegionFactoryBean<String, Conference>() {{
		setCache(cache);
		setName("conference");
	}};
}