org.springframework.context.access
public class: DefaultLocatorFactory [javadoc |
source]
java.lang.Object
org.springframework.context.access.DefaultLocatorFactory
A factory class to get a default ContextSingletonBeanFactoryLocator instance.
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from org.springframework.context.access.DefaultLocatorFactory Detail: |
public static BeanFactoryLocator getInstance() throws FatalBeanException {
return ContextSingletonBeanFactoryLocator.getInstance();
}
Return an instance object implementing BeanFactoryLocator. This will normally
be a singleton instance of the specific ContextSingletonBeanFactoryLocator class,
using the default resource selector. |
public static BeanFactoryLocator getInstance(String selector) throws FatalBeanException {
return ContextSingletonBeanFactoryLocator.getInstance(selector);
}
Return an instance object implementing BeanFactoryLocator. This will normally
be a singleton instance of the specific ContextSingletonBeanFactoryLocator class,
using the specified resource selector. |