Class ExpressionCommandMessageProcessor
java.lang.Object
org.springframework.integration.util.AbstractExpressionEvaluator
org.springframework.integration.handler.AbstractMessageProcessor<Object>
org.springframework.integration.handler.ExpressionCommandMessageProcessor
- All Implemented Interfaces:
- Aware,- BeanFactoryAware,- InitializingBean,- MessageProcessor<Object>,- IntegrationPattern
public class ExpressionCommandMessageProcessor
extends AbstractMessageProcessor<Object>
implements IntegrationPattern
A MessageProcessor implementation that expects an Expression or expressionString
 as the Message payload. When processing, it simply evaluates that expression.
- Since:
- 2.0
- Author:
- Dave Syer, Mark Fisher, Gary Russell, Artem Bilan
- 
Field SummaryFields inherited from class org.springframework.integration.util.AbstractExpressionEvaluatorEXPRESSION_PARSER, logger
- 
Constructor SummaryConstructorsConstructorDescriptionExpressionCommandMessageProcessor(MethodFilter methodFilter) ExpressionCommandMessageProcessor(MethodFilter methodFilter, BeanFactory beanFactory) 
- 
Method SummaryModifier and TypeMethodDescriptionReturn a pattern type this component implements.processMessage(Message<?> message) Evaluates the Message payload expression as a command.final voidsetBeanFactory(BeanFactory beanFactory) Specify a BeanFactory in order to enable resolution via@beanNamein the expression.Methods inherited from class org.springframework.integration.util.AbstractExpressionEvaluatorafterPropertiesSet, evaluateExpression, evaluateExpression, evaluateExpression, evaluateExpression, evaluateExpression, evaluateExpression, evaluateExpression, getBeanFactory, getEvaluationContext, getEvaluationContext, getMessageBuilderFactory, onInit, setConversionService
- 
Constructor Details- 
ExpressionCommandMessageProcessorpublic ExpressionCommandMessageProcessor()
- 
ExpressionCommandMessageProcessor
- 
ExpressionCommandMessageProcessorpublic ExpressionCommandMessageProcessor(@Nullable MethodFilter methodFilter, @Nullable BeanFactory beanFactory) 
 
- 
- 
Method Details- 
setBeanFactoryDescription copied from class:AbstractExpressionEvaluatorSpecify a BeanFactory in order to enable resolution via@beanNamein the expression.- Specified by:
- setBeanFactoryin interface- BeanFactoryAware
- Overrides:
- setBeanFactoryin class- AbstractExpressionEvaluator
 
- 
getIntegrationPatternTypeDescription copied from interface:IntegrationPatternReturn a pattern type this component implements.- Specified by:
- getIntegrationPatternTypein interface- IntegrationPattern
- Returns:
- the IntegrationPatternTypethis component implements.
 
- 
processMessageEvaluates the Message payload expression as a command.- Specified by:
- processMessagein interface- MessageProcessor<Object>
- Specified by:
- processMessagein class- AbstractMessageProcessor<Object>
- Parameters:
- message- The message to process.
- Returns:
- The result.
- Throws:
- IllegalArgumentException- if the payload is not an Exception or String
 
 
-