Uses of Class
org.springframework.util.MethodInvoker
Package
Description
SPI interfaces and configuration-related convenience classes for bean factories.
Classes supporting the org.springframework.beans package,
such as utility classes for sorting and holding lists of beans.
Support classes for the open source scheduler
Quartz,
allowing to set up Quartz Schedulers, JobDetails and
Triggers as beans in a Spring context.
Generic support classes for scheduling.
-
Uses of MethodInvoker in org.springframework.beans.factory.config
Modifier and TypeClassDescriptionclass
Simple method invoker bean: just invoking a target method, not expecting a result to expose to the container (in contrast toMethodInvokingFactoryBean
).class
FactoryBean
which returns a value which is the result of a static or instance method invocation. -
Uses of MethodInvoker in org.springframework.beans.support
Modifier and TypeClassDescriptionclass
Subclass ofMethodInvoker
that tries to convert the given arguments for the actual target method via aTypeConverter
. -
Uses of MethodInvoker in org.springframework.scheduling.quartz
Modifier and TypeClassDescriptionclass
FactoryBean
that exposes aJobDetail
object which delegates job execution to a specified (static or non-static) method.Modifier and TypeMethodDescriptionvoid
MethodInvokingJobDetailFactoryBean.MethodInvokingJob.setMethodInvoker
(MethodInvoker methodInvoker) Set the MethodInvoker to use.ModifierConstructorDescriptionJobMethodInvocationFailedException
(MethodInvoker methodInvoker, Throwable cause) Constructor for JobMethodInvocationFailedException. -
Uses of MethodInvoker in org.springframework.scheduling.support
Modifier and TypeClassDescriptionclass
Adapter that implements theRunnable
interface as a configurable method invocation based on Spring's MethodInvoker.