Class IntegrationObjectSupport
java.lang.Object
org.springframework.integration.context.IntegrationObjectSupport
- All Implemented Interfaces:
Aware
,BeanFactoryAware
,BeanNameAware
,InitializingBean
,ApplicationContextAware
,ExpressionCapable
,NamedComponent
- Direct Known Subclasses:
AbstractConnectionFactory
,AbstractEndpoint
,AbstractHandleMessageAdvice
,AbstractMailReceiver
,AbstractMessageChannel
,AbstractRequestHandlerAdvice
,AbstractTransformer
,CodecMessageConverter
,DefaultHeaderChannelRegistry
,ExpressionEvaluatingTransactionSynchronizationProcessor
,HeaderEnricher
,HeaderFilter
,MessageHandlerSupport
public abstract class IntegrationObjectSupport extends Object implements BeanNameAware, NamedComponent, ApplicationContextAware, BeanFactoryAware, InitializingBean, ExpressionCapable
A base class that provides convenient access to the bean factory as
well as
TaskScheduler
and ConversionService
instances.
This is intended to be used as a base class for internal framework components whereas code built upon the integration framework should not require tight coupling with the context but rather rely on standard dependency injection.
- Author:
- Mark Fisher, Oleg Zhurakousky, Josh Long, Stefan Ferstl, Gary Russell, Artem Bilan
-
Field Summary
Fields Modifier and Type Field Description protected static ExpressionParser
EXPRESSION_PARSER
protected LogAccessor
logger
Logger that is available to subclasses -
Constructor Summary
Constructors Constructor Description IntegrationObjectSupport()
-
Method Summary
Modifier and Type Method Description void
afterPropertiesSet()
static <T> T
extractTypeIfPossible(Object targetObject, Class<T> expectedType)
static UUID
generateId()
protected ApplicationContext
getApplicationContext()
String
getApplicationContextId()
Returns theApplicationContext.getId()
if theApplicationContext
is available.String
getBeanDescription()
protected BeanFactory
getBeanFactory()
String
getBeanName()
protected DestinationResolver<MessageChannel>
getChannelResolver()
String
getComponentName()
Will return the name of this component identified bycomponentName
field.String
getComponentType()
Subclasses may implement this method to provide component type information.ConversionService
getConversionService()
Expression
getExpression()
Return the primary SpEL expression if this component is expression-based.protected Properties
getIntegrationProperties()
Deprecated.since version 5.5 in favor ofgetIntegrationProperty(String, Class)
; will be replaced withIntegrationProperties
variant in the next major version.protected <T> T
getIntegrationProperty(String key, Class<T> tClass)
protected MessageBuilderFactory
getMessageBuilderFactory()
protected TaskScheduler
getTaskScheduler()
protected boolean
isInitialized()
Return the status of this component if it has been initialized already.protected void
onInit()
Subclasses may implement this for initialization logic.void
setApplicationContext(ApplicationContext applicationContext)
void
setBeanFactory(BeanFactory beanFactory)
void
setBeanName(String beanName)
void
setChannelResolver(DestinationResolver<MessageChannel> channelResolver)
Specify theDestinationResolver
strategy to use.void
setComponentName(String componentName)
Sets the name of this component.protected void
setConversionService(ConversionService conversionService)
void
setMessageBuilderFactory(MessageBuilderFactory messageBuilderFactory)
void
setPrimaryExpression(Expression expression)
For expression-based components, set the primary expression.void
setTaskScheduler(TaskScheduler taskScheduler)
Configure aTaskScheduler
for those components which logic relies on the scheduled tasks.String
toString()
-
Field Details
-
EXPRESSION_PARSER
-
logger
Logger that is available to subclasses
-
-
Constructor Details
-
IntegrationObjectSupport
public IntegrationObjectSupport()
-
-
Method Details
-
setBeanName
- Specified by:
setBeanName
in interfaceBeanNameAware
-
getBeanName
- Specified by:
getBeanName
in interfaceNamedComponent
-
getComponentName
Will return the name of this component identified bycomponentName
field. IfcomponentName
was not set this method will default to the 'beanName' of this component;- Specified by:
getComponentName
in interfaceNamedComponent
-
setComponentName
Sets the name of this component.- Parameters:
componentName
- The component name.
-
getComponentType
Subclasses may implement this method to provide component type information.- Specified by:
getComponentType
in interfaceNamedComponent
-
getBeanDescription
-
setBeanFactory
- Specified by:
setBeanFactory
in interfaceBeanFactoryAware
-
setApplicationContext
- Specified by:
setApplicationContext
in interfaceApplicationContextAware
- Throws:
BeansException
-
setChannelResolver
Specify theDestinationResolver
strategy to use. The default is a BeanFactoryChannelResolver.- Parameters:
channelResolver
- The channel resolver.
-
getExpression
Description copied from interface:ExpressionCapable
Return the primary SpEL expression if this component is expression-based.- Specified by:
getExpression
in interfaceExpressionCapable
- Returns:
- the expression as a String.
-
setPrimaryExpression
For expression-based components, set the primary expression.- Parameters:
expression
- the expression.- Since:
- 4.3
-
afterPropertiesSet
public final void afterPropertiesSet()- Specified by:
afterPropertiesSet
in interfaceInitializingBean
-
onInit
protected void onInit()Subclasses may implement this for initialization logic. -
isInitialized
protected boolean isInitialized()Return the status of this component if it has been initialized already.- Returns:
- the flag if this component has been initialized already.
-
getBeanFactory
-
setTaskScheduler
Configure aTaskScheduler
for those components which logic relies on the scheduled tasks. If not provided, falls back to the globaltaskScheduler
bean in the application context, provided by the Spring Integration infrastructure.- Parameters:
taskScheduler
- theTaskScheduler
to use.- Since:
- 5.1.3
- See Also:
getTaskScheduler()
-
getTaskScheduler
-
getChannelResolver
-
getConversionService
-
setConversionService
-
getApplicationContextId
Returns theApplicationContext.getId()
if theApplicationContext
is available.- Returns:
- The id, or null if there is no application context.
-
getApplicationContext
- Returns:
- the applicationContext
-
getIntegrationProperties
Deprecated.since version 5.5 in favor ofgetIntegrationProperty(String, Class)
; will be replaced withIntegrationProperties
variant in the next major version.- Returns:
- The global integration properties.
- See Also:
IntegrationContextUtils.getIntegrationProperties(BeanFactory)
-
getMessageBuilderFactory
-
setMessageBuilderFactory
-
getIntegrationProperty
- Type Parameters:
T
- The expected type of the property.- Parameters:
key
- Integration property.tClass
- the class to convert a value of Integration property.- Returns:
- the value of the Integration property converted to the provide type.
-
toString
-
extractTypeIfPossible
-
generateId
-