-
Spring Batch unit test example
In this tutorial, we will show you how to unit test Spring batch jobs with jUnit and TestNG frameworks. To unit test batch job, declares spring-batch-test.jar, @autowired the JobLauncherTestUtils, launch the job or step, and assert the execution status.
Date: 2019-08-18 View: 1753
-
NoSuchBeanDefinitionException : No qualifying bean of type JobLauncherTestUtils
Following the official Spring batch unit testing guide to create a standard unit test case.
Date: 2019-08-18 View: 2200
-
Spring Batch Example – XML File To MongoDB Database
In this tutorial, we will show you how to configure a Spring Batch job to read data from an XML file (XStream library) into a no SQL database (MongoDB). In additional, create a unit test case to launch and test the batch jobs.
Date: 2019-08-18 View: 1434
-
Spring Batch Example – XML File To CSV File
In this tutorial, we will show you how to configure a Spring Batch job to read XML file (JAXB2 library) into a csv file, and filter out the record before writing with ItemProcessor.
Date: 2019-08-18 View: 1512
-
How to find Java class in Eclipse?
In Eclipse IDE, you can type CTRL + SHIFT + T in Windows or *nix or Command + SHIFT + T in Mac OSX to prompt an Open Type dialog box to find details about a specified Java class.
Date: 2019-08-18 View: 1396
-
jobParameters cannot be found on object of type BeanExpressionContext
Create a simple Spring batch job to write data to a csv file. The csv file name depends on the pass in job’s parameters, interprets by Spring EL .
Date: 2019-08-18 View: 3903
-
How to add copyright to Eclipse automatically
A quick guide to show you how to add @Copyright comment to new and existing Java files in Eclipse IDE.
Date: 2019-08-18 View: 1511
-
How to convert Date in BeanWrapperFieldSetMapper
Read following Spring batch job, it reads data from “domain.csv“, and map it to a domain object.
Date: 2019-08-18 View: 1951
-
Domain name regular expression example
Domain Name Regular Expression Pattern
Date: 2019-08-18 View: 1775
-
Run Spring batch job with CommandLineJobRunner
A quick guide to show you how to run a Spring batch job with CommandLineJobRunner.
Date: 2019-08-18 View: 1737
-
Spring Batch MultiResourceItemReader example
In this tutorial, we will show you how to read items from multiple resources (multiple csv files), and write the items into a single csv file.
Date: 2019-08-18 View: 1655
-
Spring Batch Tasklet example
In Spring batch, the Tasklet is an interface, which will be called to perform a single task only, like clean or set up resources before or after any step execution. In this example, we will show you how to use Tasklet to clean up the resource (folders) after a batch job is completed.
Date: 2019-08-18 View: 1674
-
Spring Batch listeners example
In Spring batch, there are six “listeners” to intercept the step execution, I believe the class name should be self-explanatory.
Date: 2019-08-18 View: 1701
-
Spring Batch Example – MySQL Database To XML
In this tutorial, we will show you how to read data from a MySQL database, with JdbcCursorItemReader and JdbcPagingItemReader, and write it into an XML file.
Date: 2019-08-18 View: 1788
-
Spring Batch Partitioning example
Photo Credit : Spring Source
Date: 2019-08-18 View: 1414