Example usage for org.springframework.batch.support.transaction TransactionAwareProxyFactory createAppendOnlyTransactionalList

List of usage examples for org.springframework.batch.support.transaction TransactionAwareProxyFactory createAppendOnlyTransactionalList

Introduction

In this page you can find the example usage for org.springframework.batch.support.transaction TransactionAwareProxyFactory createAppendOnlyTransactionalList.

Prototype

public static <T> List<T> createAppendOnlyTransactionalList() 

Source Link

Usage

From source file:org.springframework.batch.support.transaction.ConcurrentTransactionAwareProxyTests.java

@Test
public void testConcurrentTransactionalAppendOnlyList() throws Exception {
    List<String> list = TransactionAwareProxyFactory.createAppendOnlyTransactionalList();
    testList(list, false);//from w  w w .  jav  a  2  s.  c  om
}