@ -47690,30 +47690,30 @@ classes that simplify the usage of Quartz within Spring-based applications.
@@ -47690,30 +47690,30 @@ classes that simplify the usage of Quartz within Spring-based applications.
[[scheduling-quartz-jobdetail]]
==== Using the JobDetailBean
`JobDetail` objects contain all information needed to run a job. The Spring Framework
provides a `JobDetailBean` that makes the `JobDetail` more of an actual JavaBean with
sensible defaults. Let's have a look at an example:
==== Using the JobDetailFactoryBean
Quartz `JobDetail` objects contain all information needed to run a job. Spring provides a
`JobDetailFactoryBean` which provides bean-style properties for XML configuration purposes.
All additional settings from the job detail bean are of course available to you as well.
All additional properties from the job data map are of course available to you as well.
[NOTE]
====
Using the `name` and `group` properties, you can modify the name and the group
of the job, respectively. By default, the name of the job matches the bean name of the
job detail bean (in the example above, this is `exampleJob`).
of the job, respectively. By default, the name of the job matches the bean name
of the `JobDetailFactoryBean` (in the example above, this is `exampleJob`).
====
@ -47760,8 +47760,8 @@ Often you just need to invoke a method on a specific object. Using the
@@ -47760,8 +47760,8 @@ Often you just need to invoke a method on a specific object. Using the
@ -47803,9 +47803,9 @@ job will not start before the first one has finished. To make jobs resulting fro
@@ -47803,9 +47803,9 @@ job will not start before the first one has finished. To make jobs resulting fro
@ -47861,8 +47861,8 @@ seconds and one every morning at 6 AM. To finalize everything, we need to set up
@@ -47861,8 +47861,8 @@ seconds and one every morning at 6 AM. To finalize everything, we need to set up