Example usage for org.springframework.integration.util AbstractExpressionEvaluator subclass-usage

List of usage examples for org.springframework.integration.util AbstractExpressionEvaluator subclass-usage

Introduction

In this page you can find the example usage for org.springframework.integration.util AbstractExpressionEvaluator subclass-usage.

Usage

From source file org.springframework.integration.aws.s3.DefaultFileNameGenerationStrategy.java

/**
 * The Default file name generation strategy. The strategy does the below steps for file name
 * generation
 * 1. The expression provided for generation of the file name, it is evaluated and
 * if a value is obtained, it is used. By default it used the value present in the
 * file_name header.

From source file org.springframework.integration.jdbc.ExpressionEvaluatingSqlParameterSourceFactory.java

/**
 * An implementation of {@link SqlParameterSourceFactory} which creates an {@link SqlParameterSource} that evaluates
 * Spring EL expressions. In addition the user can supply static parameters that always take precedence.
 *
 * @author Dave Syer
 * @author Oleg Zhurakousky

From source file org.springframework.integration.util.MessagingMethodInvokerHelper.java

/**
 * A helper class for processors that invoke a method on a target Object using a combination of message payload(s) and
 * headers as arguments. The Method instance or method name may be provided as a constructor argument. If a method name
 * is provided, and more than one declared method has that name, the method-selection will be dynamic, based on the
 * underlying SpEL method resolution. Alternatively, an annotation type may be provided so that the candidates for
 * SpEL's method resolution are determined by the presence of that annotation rather than the method name.

From source file org.springframework.integration.handler.support.MessagingMethodInvokerHelper.java

/**
 * A helper class for processors that invoke a method on a target Object using
 * a combination of message payload(s) and headers as arguments.
 * The Method instance or method name may be provided as a constructor argument.
 * If a method name is provided, and more than one declared method has that name,
 * the method-selection will be dynamic, based on the underlying SpEL method resolution.