Add a builder for the JpaItemWriter

Resolves BATCH-2714.
This commit is contained in:
Mahmoud Ben Hassine
2018-05-09 11:09:19 +02:00
committed by Michael Minella
parent 026bbe056b
commit 69b32e56e6
2 changed files with 148 additions and 0 deletions

View File

@@ -0,0 +1,61 @@
/*
* Copyright 2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.batch.item.database.builder;
import javax.persistence.EntityManagerFactory;
import org.springframework.batch.item.database.JpaItemWriter;
import org.springframework.util.Assert;
/**
* A builder for the {@link JpaItemWriter}.
*
* @author Mahmoud Ben Hassine
* @since 4.1
* @see JpaItemWriter
*/
public class JpaItemWriterBuilder<T> {
private EntityManagerFactory entityManagerFactory;
/**
* The JPA {@link EntityManagerFactory} to obtain an entity manager from. Required.
*
* @param entityManagerFactory the {@link EntityManagerFactory}
* @return this instance for method chaining
* @see JpaItemWriter#setEntityManagerFactory(EntityManagerFactory)
*/
public JpaItemWriterBuilder<T> entityManagerFactory(EntityManagerFactory entityManagerFactory) {
this.entityManagerFactory = entityManagerFactory;
return this;
}
/**
* Returns a fully built {@link JpaItemWriter}.
*
* @return the writer
*/
public JpaItemWriter<T> build() {
Assert.state(this.entityManagerFactory != null,
"EntityManagerFactory must be provided");
JpaItemWriter<T> writer = new JpaItemWriter<>();
writer.setEntityManagerFactory(this.entityManagerFactory);
return writer;
}
}