MyBatisBatchItemWriterBuilder.java

  1. /*
  2.  * Copyright 2010-2024 the original author or authors.
  3.  *
  4.  * Licensed under the Apache License, Version 2.0 (the "License");
  5.  * you may not use this file except in compliance with the License.
  6.  * You may obtain a copy of the License at
  7.  *
  8.  *    https://www.apache.org/licenses/LICENSE-2.0
  9.  *
  10.  * Unless required by applicable law or agreed to in writing, software
  11.  * distributed under the License is distributed on an "AS IS" BASIS,
  12.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13.  * See the License for the specific language governing permissions and
  14.  * limitations under the License.
  15.  */
  16. package org.mybatis.spring.batch.builder;

  17. import java.util.Optional;

  18. import org.apache.ibatis.session.SqlSessionFactory;
  19. import org.mybatis.spring.SqlSessionTemplate;
  20. import org.mybatis.spring.batch.MyBatisBatchItemWriter;
  21. import org.springframework.core.convert.converter.Converter;

  22. /**
  23.  * A builder for the {@link MyBatisBatchItemWriter}.
  24.  *
  25.  * @author Kazuki Shimizu
  26.  *
  27.  * @since 2.0.0
  28.  *
  29.  * @see MyBatisBatchItemWriter
  30.  */
  31. public class MyBatisBatchItemWriterBuilder<T> {

  32.   private SqlSessionTemplate sqlSessionTemplate;
  33.   private SqlSessionFactory sqlSessionFactory;
  34.   private String statementId;
  35.   private Boolean assertUpdates;
  36.   private Converter<T, ?> itemToParameterConverter;

  37.   /**
  38.    * Set the {@link SqlSessionTemplate} to be used by writer for database access.
  39.    *
  40.    * @param sqlSessionTemplate
  41.    *          the {@link SqlSessionTemplate} to be used by writer for database access
  42.    *
  43.    * @return this instance for method chaining
  44.    *
  45.    * @see MyBatisBatchItemWriter#setSqlSessionTemplate(SqlSessionTemplate)
  46.    */
  47.   public MyBatisBatchItemWriterBuilder<T> sqlSessionTemplate(SqlSessionTemplate sqlSessionTemplate) {
  48.     this.sqlSessionTemplate = sqlSessionTemplate;
  49.     return this;
  50.   }

  51.   /**
  52.    * Set the {@link SqlSessionFactory} to be used by writer for database access.
  53.    *
  54.    * @param sqlSessionFactory
  55.    *          the {@link SqlSessionFactory} to be used by writer for database access
  56.    *
  57.    * @return this instance for method chaining
  58.    *
  59.    * @see MyBatisBatchItemWriter#setSqlSessionFactory(SqlSessionFactory)
  60.    */
  61.   public MyBatisBatchItemWriterBuilder<T> sqlSessionFactory(SqlSessionFactory sqlSessionFactory) {
  62.     this.sqlSessionFactory = sqlSessionFactory;
  63.     return this;
  64.   }

  65.   /**
  66.    * Set the statement id identifying the statement in the SqlMap configuration file.
  67.    *
  68.    * @param statementId
  69.    *          the id for the statement
  70.    *
  71.    * @return this instance for method chaining
  72.    *
  73.    * @see MyBatisBatchItemWriter#setStatementId(String)
  74.    */
  75.   public MyBatisBatchItemWriterBuilder<T> statementId(String statementId) {
  76.     this.statementId = statementId;
  77.     return this;
  78.   }

  79.   /**
  80.    * The flag that determines whether an assertion is made that all items cause at least one row to be updated.
  81.    *
  82.    * @param assertUpdates
  83.    *          the flag to set. Defaults to true
  84.    *
  85.    * @return this instance for method chaining
  86.    *
  87.    * @see MyBatisBatchItemWriter#setAssertUpdates(boolean)
  88.    */
  89.   public MyBatisBatchItemWriterBuilder<T> assertUpdates(boolean assertUpdates) {
  90.     this.assertUpdates = assertUpdates;
  91.     return this;
  92.   }

  93.   /**
  94.    * Set a converter that converting item to parameter object.
  95.    *
  96.    * @param itemToParameterConverter
  97.    *          a converter that converting item to parameter object
  98.    *
  99.    * @return this instance for method chaining
  100.    *
  101.    * @see MyBatisBatchItemWriter#setItemToParameterConverter(Converter)
  102.    */
  103.   public MyBatisBatchItemWriterBuilder<T> itemToParameterConverter(Converter<T, ?> itemToParameterConverter) {
  104.     this.itemToParameterConverter = itemToParameterConverter;
  105.     return this;
  106.   }

  107.   /**
  108.    * Returns a fully built {@link MyBatisBatchItemWriter}.
  109.    *
  110.    * @return the writer
  111.    */
  112.   public MyBatisBatchItemWriter<T> build() {
  113.     var writer = new MyBatisBatchItemWriter<T>();
  114.     writer.setSqlSessionTemplate(this.sqlSessionTemplate);
  115.     writer.setSqlSessionFactory(this.sqlSessionFactory);
  116.     writer.setStatementId(this.statementId);
  117.     Optional.ofNullable(this.assertUpdates).ifPresent(writer::setAssertUpdates);
  118.     Optional.ofNullable(this.itemToParameterConverter).ifPresent(writer::setItemToParameterConverter);
  119.     return writer;
  120.   }

  121. }