1213141516171819202122
public class MongoConfiguration { @Bean public Mongo mongo() throws IOException { System.setProperty("DB.TRACE","true"); return new EmbeddedMongoBuilder() .version("2.6.0") .bindIp("127.0.0.1") .port(allocateRandomPort()) .build(); }