Example usage for org.springframework.context.support GenericApplicationContext subclass-usage

List of usage examples for org.springframework.context.support GenericApplicationContext subclass-usage

Introduction

In this page you can find the example usage for org.springframework.context.support GenericApplicationContext subclass-usage.

Usage

From source file edu.berkeley.compbio.ncbitaxonomy.NcbiTaxonomyDbContextFactory.java

/**
 * @author <a href="mailto:dev@davidsoergel.com">David Soergel</a>
 * @version $Id$
 */
public class NcbiTaxonomyDbContextFactory extends GenericApplicationContext {
    private static final Logger logger = Logger.getLogger(NcbiTaxonomyDbContextFactory.class);

From source file com.openedit.config.SpringContext.java

public class SpringContext extends GenericApplicationContext {
    /*
     * Copyright 2002-2012 the original author or authors.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.

From source file gai.kernel.BeanContainer.java

/**
 * Loads the Kernel and agents .
 * @see gai.agents.AgentEnvironment#getCallback()
 */
public class BeanContainer extends GenericApplicationContext {

From source file org.elasticsoftware.elasticactors.spring.AnnotationConfigApplicationContext.java

/**
 * Standalone application context, accepting annotated classes as input - in particular
 * {@link org.springframework.context.annotation.Configuration @Configuration}-annotated classes, but also plain
 * {@link org.springframework.stereotype.Component @Component} types and JSR-330 compliant
 * classes using {@code javax.inject} annotations. Allows for registering classes one by
 * one using {@link #register(Class...)} as well as for classpath scanning using

From source file org.sakaiproject.util.SakaiApplicationContext.java

/**
 * Hook some Sakai-specific operations into the normal ApplicationContext
 * refresh cycle: read component manager configuration files, give creators of
 * PostProcessor objects (e.g., SakaiProperties) a chance to do their work,
 * and load a few central components before the rest.
 */

From source file org.codehaus.griffon.runtime.spring.GriffonApplicationContext.java

/**
 * An ApplicationContext that extends StaticApplicationContext and implements GroovyObject such that beans can be retrieved with the dot
 * de-reference syntax instead of using getBean('name')
 *
 * @author Graeme Rocher
 * @since 1.0

From source file org.springframework.context.support.GenericGroovyApplicationContext.java

/**
 * An {@link org.springframework.context.ApplicationContext} implementation that extends
 * {@link GenericApplicationContext} and implements {@link GroovyObject} such that beans
 * can be retrieved with the dot de-reference syntax instead of using {@link #getBean}.
 *
 * <p>Consider this as the equivalent of {@link GenericXmlApplicationContext} for