Skip to content

Commit

Permalink
Update javadocs
Browse files Browse the repository at this point in the history
  • Loading branch information
fmbenhassine committed Nov 21, 2024
1 parent 0d42569 commit 1105d22
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,17 @@
import org.springframework.batch.core.repository.dao.MongoStepExecutionDao;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.data.mongodb.core.MongoOperations;
import org.springframework.data.mongodb.core.convert.MappingMongoConverter;
import org.springframework.util.Assert;

/**
* This factory bean creates a job explorer backed by MongoDB. It requires a mongo
* template and a mongo transaction manager. <strong>The mongo template must be configured
* with a {@link MappingMongoConverter} having a {@code MapKeyDotReplacement} set to a non
* null value. See {@code MongoDBJobRepositoryIntegrationTests} for an example. This is
* required to support execution context keys containing dots (like "step.type" or
* "batch.version")</strong>
*
* @author Mahmoud Ben Hassine
* @since 5.2.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,17 @@
import org.springframework.batch.core.repository.dao.MongoStepExecutionDao;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.data.mongodb.core.MongoOperations;
import org.springframework.data.mongodb.core.convert.MappingMongoConverter;
import org.springframework.util.Assert;

/**
* This factory bean creates a job repository backed by MongoDB. It requires a mongo
* template and a mongo transaction manager. <strong>The mongo template must be configured
* with a {@link MappingMongoConverter} having a {@code MapKeyDotReplacement} set to a non
* null value. See {@code MongoDBJobRepositoryIntegrationTests} for an example. This is
* required to support execution context keys containing dots (like "step.type" or
* "batch.version")</strong>
*
* @author Mahmoud Ben Hassine
* @since 5.2.0
*/
Expand Down

0 comments on commit 1105d22

Please sign in to comment.