Package org.springframework.batch.item.support

Examples of org.springframework.batch.item.support.PassThroughItemProcessor


            .addPropertyReference(ITEM_WRITER_PROPERTY_NAME, itemWriter);

    if(StringUtils.hasText(itemProcessor)) {
      chunkProcessorBuilder.addPropertyReference(ITEM_PROCESSOR_PROPERTY_NAME, itemProcessor);
    } else {
      chunkProcessorBuilder.addPropertyValue(ITEM_PROCESSOR_PROPERTY_NAME, new PassThroughItemProcessor());
    }

    BeanDefinition chunkProcessorChunkHandler =
        BeanDefinitionBuilder
            .genericBeanDefinition(ChunkProcessorChunkHandler.class)
View Full Code Here

TOP

Related Classes of org.springframework.batch.item.support.PassThroughItemProcessor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.