io.github.astrapi69.spring.batch.factory.SpringBatchObjectFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-tool-extensions Show documentation
Show all versions of spring-tool-extensions Show documentation
Project that holds utility classes for the spring framework
/**
* The MIT License
*
* Copyright (C) 2015 Asterios Raptis
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package io.github.astrapi69.spring.batch.factory;
import java.time.format.DateTimeFormatter;
import javax.sql.DataSource;
import jakarta.persistence.EntityManagerFactory;
import lombok.NonNull;
import lombok.experimental.UtilityClass;
import org.springframework.batch.item.database.BeanPropertyItemSqlParameterSourceProvider;
import org.springframework.batch.item.database.JdbcBatchItemWriter;
import org.springframework.batch.item.database.JpaItemWriter;
import org.springframework.batch.item.database.builder.JdbcBatchItemWriterBuilder;
import org.springframework.batch.item.file.FlatFileItemReader;
import org.springframework.batch.item.file.builder.FlatFileItemReaderBuilder;
import org.springframework.batch.item.file.mapping.DefaultLineMapper;
import org.springframework.batch.item.file.mapping.FieldSetMapper;
import org.springframework.batch.item.file.transform.DelimitedLineTokenizer;
import org.springframework.core.io.Resource;
import io.github.astrapi69.reflection.ReflectionExtensions;
import io.github.astrapi69.spring.batch.mapper.CustomBeanWrapperFieldSetMapper;
@UtilityClass
public class SpringBatchObjectFactory
{
public static final String READER_SUFFIX = "Reader";
public static final String WRITER_SUFFIX = "Writer";
public static JdbcBatchItemWriter newJdbcBatchItemWriter(
final @NonNull DataSource dataSource, final @NonNull String sql)
{
return new JdbcBatchItemWriterBuilder()
.itemSqlParameterSourceProvider(new BeanPropertyItemSqlParameterSourceProvider<>())
.sql(sql).dataSource(dataSource).build();
}
public static FlatFileItemReader newCsvFileItemReader(final @NonNull Resource resource,
final @NonNull Class typeClass, final @NonNull String delimiter, final int linesToSkip)
{
return newCsvFileItemReader(resource, typeClass, DateTimeFormatter.ofPattern("dd-MM-yyyy"),
delimiter, linesToSkip);
}
public static FlatFileItemReader newCsvFileItemReader(final @NonNull Resource resource,
final @NonNull Class typeClass, final @NonNull DateTimeFormatter formatter,
final @NonNull String delimiter, final int linesToSkip)
{
return newCsvFileItemReader(resource, typeClass,
new CustomBeanWrapperFieldSetMapper<>(typeClass, formatter), delimiter, linesToSkip);
}
public static FlatFileItemReader newCsvFileItemReader(final @NonNull Resource resource,
final @NonNull Class typeClass, final @NonNull FieldSetMapper fieldSetMapper,
final @NonNull String delimiter, final int linesToSkip)
{
DefaultLineMapper lineMapper = new DefaultLineMapper<>();
String[] fieldNames = ReflectionExtensions.getDeclaredFieldNames(typeClass);
DelimitedLineTokenizer delimitedLineTokenizer = new DelimitedLineTokenizer(delimiter);
delimitedLineTokenizer.setNames(fieldNames);
lineMapper.setFieldSetMapper(fieldSetMapper);
lineMapper.setLineTokenizer(delimitedLineTokenizer);
return new FlatFileItemReaderBuilder().name(typeClass.getSimpleName() + READER_SUFFIX)
.resource(resource).lineMapper(lineMapper).linesToSkip(linesToSkip).build();
}
public static JpaItemWriter newJpaItemWriter(
final @NonNull EntityManagerFactory entityManagerFactory)
{
JpaItemWriter writer = new JpaItemWriter<>();
writer.setEntityManagerFactory(entityManagerFactory);
return writer;
}
public static CustomBeanWrapperFieldSetMapper newCustomBeanWrapperFieldSetMapper(
final @NonNull Class extends T> typeClass, final @NonNull DateTimeFormatter formatter)
{
return new CustomBeanWrapperFieldSetMapper<>(typeClass, formatter);
}
}