public DefaultServiceRepository(ServletContext ctx) {
this(ctx, null);
}
public DefaultServiceRepository(ServletContext ctx, String defaultProperties) {
simpleFactory = new DefaultServiceFactory();
if (springAvailable()) {
springFactory = new SpringServiceFactory(ctx);
}