public class OmeroContext
extends org.springframework.context.support.ClassPathXmlApplicationContext
getInstance(String)
or
ServiceFactory.ServiceFactory(String)
.
By passing a Properties
instance into the
getClientContext(Properties)
method, a non-static version is
created. Currently this is only supported for the client context.Modifier and Type | Class and Description |
---|---|
protected static class |
OmeroContext.Locator
provides access to the protected methods of
ContextSingletonBeanFactoryLocator
which cannot be used externally. |
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
CLIENT_CONTEXT
identifier for an OmeroContext configured in
classpath*:beanRefContext.xml for use by remote (via JNDI/RMI) clients.
|
static java.lang.String |
MANAGED_CONTEXT
identifier for an OmeroContext configured in
classpath*:beanRefContext.xml for use by server-side processes.
|
APPLICATION_EVENT_MULTICASTER_BEAN_NAME, LIFECYCLE_PROCESSOR_BEAN_NAME, logger, MESSAGE_SOURCE_BEAN_NAME
CONFIG_LOCATION_DELIMITERS, CONVERSION_SERVICE_BEAN_NAME, LOAD_TIME_WEAVER_BEAN_NAME, SYSTEM_ENVIRONMENT_BEAN_NAME, SYSTEM_PROPERTIES_BEAN_NAME
Constructor and Description |
---|
OmeroContext(java.lang.String configLocation) |
OmeroContext(java.lang.String[] configLocations) |
OmeroContext(java.lang.String[] configLocations,
org.springframework.context.ApplicationContext parent) |
OmeroContext(java.lang.String[] configLocations,
boolean refresh) |
OmeroContext(java.lang.String[] configLocations,
boolean refresh,
org.springframework.context.ApplicationContext parent) |
Modifier and Type | Method and Description |
---|---|
void |
applyBeanPropertyValues(java.lang.Object target,
java.lang.Class<? extends ServiceInterface> beanInterface)
Uses the methods of this context's
BeanFactory to autowire any
Object based on the service class. |
void |
applyBeanPropertyValues(java.lang.Object target,
java.lang.String beanName)
Uses the methods of this context's
BeanFactory to autowire any
Object based on the given beanName. |
void |
closeAll()
closes all the nested OmeroContexts within this instance.
|
static OmeroContext |
getClientContext()
create (if necessary) and return the single default client OmeroContext.
|
static OmeroContext |
getClientContext(java.util.Properties props)
initialize a new client OmeroContext (named
CLIENT_CONTEXT ),
using the getContext(Properties, String) method. |
static OmeroContext |
getContext(java.util.Properties props,
java.lang.String context)
initialize a new client OmeroContext using the
Properties
provided as values for property (e.g. |
static OmeroContext |
getInstance(java.lang.String beanFactoryName)
create (if necessary) and return the single default OmeroContext named by
the beanFactoryName parameter.
|
static OmeroContext |
getManagedServerContext()
create (if necessary) and return the single default managed OmeroContext.
|
java.lang.String |
getProperty(java.lang.String propertyName) |
protected void |
onRefresh() |
void |
publishEvent(org.springframework.context.ApplicationEvent event) |
void |
publishMessage(InternalMessage msg)
Convenience method around
publishEvent(org.springframework.context.ApplicationEvent) which
catches all MessageException and unwraps the contained
Throwable instance and rethrows. |
void |
refreshAll()
refreshes all the nested OmeroContexts within this instance.
|
void |
refreshAllIfNecessary()
|
getConfigResources
initBeanDefinitionReader, loadBeanDefinitions, loadBeanDefinitions, setValidating
afterPropertiesSet, getConfigLocations, getDefaultConfigLocations, resolvePath, setBeanName, setConfigLocation, setConfigLocations, setId
cancelRefresh, closeBeanFactory, createBeanFactory, customizeBeanFactory, getBeanFactory, hasBeanFactory, refreshBeanFactory, setAllowBeanDefinitionOverriding, setAllowCircularReferences
addApplicationListener, addBeanFactoryPostProcessor, addListener, close, containsBean, containsBeanDefinition, containsLocalBean, destroy, destroyBeans, doClose, findAnnotationOnBean, finishBeanFactoryInitialization, finishRefresh, getAliases, getApplicationListeners, getAutowireCapableBeanFactory, getBean, getBean, getBean, getBean, getBeanDefinitionCount, getBeanDefinitionNames, getBeanFactoryPostProcessors, getBeanNamesForType, getBeanNamesForType, getBeansOfType, getBeansOfType, getBeansWithAnnotation, getDisplayName, getId, getInternalParentBeanFactory, getInternalParentMessageSource, getMessage, getMessage, getMessage, getParent, getParentBeanFactory, getResourcePatternResolver, getResources, getStartupDate, getType, initApplicationEventMulticaster, initLifecycleProcessor, initMessageSource, invokeBeanFactoryPostProcessors, isActive, isPrototype, isRunning, isSingleton, isTypeMatch, obtainFreshBeanFactory, onClose, postProcessBeanFactory, prepareBeanFactory, prepareRefresh, refresh, registerBeanPostProcessors, registerListeners, registerShutdownHook, setDisplayName, setParent, start, stop, toString
getClassLoader, getResource, getResourceByPath, setClassLoader
public static final java.lang.String CLIENT_CONTEXT
public static final java.lang.String MANAGED_CONTEXT
public OmeroContext(java.lang.String configLocation) throws org.springframework.beans.BeansException
org.springframework.beans.BeansException
public OmeroContext(java.lang.String[] configLocations) throws org.springframework.beans.BeansException
org.springframework.beans.BeansException
public OmeroContext(java.lang.String[] configLocations, boolean refresh) throws org.springframework.beans.BeansException
org.springframework.beans.BeansException
public OmeroContext(java.lang.String[] configLocations, org.springframework.context.ApplicationContext parent) throws org.springframework.beans.BeansException
org.springframework.beans.BeansException
public OmeroContext(java.lang.String[] configLocations, boolean refresh, org.springframework.context.ApplicationContext parent) throws org.springframework.beans.BeansException
org.springframework.beans.BeansException
public static OmeroContext getClientContext()
CLIENT_CONTEXT
public static OmeroContext getClientContext(java.util.Properties props)
CLIENT_CONTEXT
),
using the getContext(Properties, String)
method.public static OmeroContext getContext(java.util.Properties props, java.lang.String context)
Properties
provided as values for property (e.g. ${name}) replacement in Spring. Two
calls to this method with the same argument will return different ( =! )
contexts.props
- Non-null properties for replacement.context
- Non-null name of context to find in beanRefContext.xmlServiceFactory.ServiceFactory(Login)
,
ServiceFactory.ServiceFactory(Server)
,
ServiceFactory.ServiceFactory(Properties)
public static OmeroContext getManagedServerContext()
MANAGED_CONTEXT
public static OmeroContext getInstance(java.lang.String beanFactoryName)
getClientContext()
,
getManagedServerContext()
public void applyBeanPropertyValues(java.lang.Object target, java.lang.String beanName)
BeanFactory
to autowire any
Object based on the given beanName.AutowireCapableBeanFactory.applyBeanPropertyValues(java.lang.Object,
java.lang.String)
public void applyBeanPropertyValues(java.lang.Object target, java.lang.Class<? extends ServiceInterface> beanInterface)
BeanFactory
to autowire any
Object based on the service class. This is used by
SelfConfigurableService
instances to acquire dependencies.SelfConfigurableService
,
AutowireCapableBeanFactory.applyBeanPropertyValues(java.lang.Object,
java.lang.String)
public void refreshAll()
Properties
which were
pulled from System.getProperties()
have been changed.
If this is a server-side instance (MANAGED_CONTEXT
), this may
take a significant amount of time.ConfigurableApplicationContext.refresh()
public void refreshAllIfNecessary()
public void closeAll()
MANAGED_CONTEXT
), this may
take a significant amount of time.ConfigurableApplicationContext.close()
public java.lang.String getProperty(java.lang.String propertyName)
public void publishEvent(org.springframework.context.ApplicationEvent event)
publishEvent
in interface org.springframework.context.ApplicationEventPublisher
publishEvent
in class org.springframework.context.support.AbstractApplicationContext
public void publishMessage(InternalMessage msg) throws java.lang.Throwable
publishEvent(org.springframework.context.ApplicationEvent)
which
catches all MessageException
and unwraps the contained
Throwable
instance and rethrows.msg
- java.lang.Throwable
protected void onRefresh() throws org.springframework.beans.BeansException
onRefresh
in class org.springframework.context.support.AbstractApplicationContext
org.springframework.beans.BeansException
Version: 5.4.4-ice35-b82
Copyright © 2018 The University of Dundee & Open Microscopy Environment. All Rights Reserved.