# v5-sample **Repository Path**: gtfhao/v5-sample ## Basic Information - **Project Name**: v5-sample - **Description**: terasoluna-batch 空白项目 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: 5.4.x - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-11-28 - **Last Updated**: 2022-12-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README = Blank project for batch application using TERASOLUNA Batch Framework for Java (5.x) This is blank project template for batch application is provided in collaboration with TERASOLUNA Batch Framework for Java (5.x) (Spring Batch + Spring + MyBatis3). Use this as the starting point of all kinds of development activities. This blank project can be be beneficial in following ways. 1. The **most standard and ideal baseline configuration and structure** to all the development activities. 2. Quickly jump to focus on business application. == Getting Started To create blank project interactively. + Set the groupId, artifactId, version and package to suit your project. * for CommandPrompt(Windows) [source, text] ---- C:\xxx>mvn archetype:generate ^ -DarchetypeGroupId=org.terasoluna.batch ^ -DarchetypeArtifactId=terasoluna-batch-archetype ^ -DarchetypeVersion=5.4.1.RELEASE ---- * for Bash(Unix, Linux, ...) [source, text] ---- $ mvn archetype:generate \ -DarchetypeGroupId=org.terasoluna.batch \ -DarchetypeArtifactId=terasoluna-batch-archetype \ -DarchetypeVersion=5.4.1.RELEASE ---- == Run In order to run the blank project, execute the below command. * for CommandPrompt(Windows) [source, text] ---- C:\xxx>cd [artifactId] C:\xxx>mvn clean dependency:copy-dependencies -DoutputDirectory=lib package C:\xxx>java -cp "lib/*;target/*" ^ org.springframework.batch.core.launch.support.CommandLineJobRunner ^ META-INF/jobs/job01.xml job01 ---- * for Bash(Unix, Linux, ...) [source, text] ---- $ cd [artifactId] $ mvn clean dependency:copy-dependencies -DoutputDirectory=lib package $ java -cp 'lib/*:target/*' \ org.springframework.batch.core.launch.support.CommandLineJobRunner \ META-INF/jobs/job01.xml job01 ----