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