Apache Geode (GemFire) in a Docker container
If you want to play around with geode in docker, try this...
docker run -it apache geode/geode:1.0.0-incubating.M1.RC1 gosh
a collection of blog posts on Spring, Spring Batch, Spring Integration, Spring Data and other Java related technologies
de.incompleteco.gemfire.initializer.Initializer
package de.incompleteco.gemfire.initializer;
import java.util.Properties;
import com.gemstone.gemfire.cache.Declarable;
public class Initializer implements Declarable {
public void init(Properties properties) {
//put some stuff here --> maybe an app context
}
}