Skip to content

Commit c792c1d

Browse files
fix: README
1 parent 1c84fc0 commit c792c1d

File tree

2 files changed

+9
-19
lines changed

2 files changed

+9
-19
lines changed

dbAndCsvBatch/README.md

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,14 @@
1-
# dbAndCsvBatch - Database and CSV Batch Processing / データベースとCSVのバッチ処理 🚀
1+
# dbAndCsvBatch - Database and CSV Batch Processing
22

33
This module provides practical batch processing samples for:
44

5-
このモジュールは以下のバッチ処理サンプルを提供します:
65
1. Exporting data from a database to a CSV file (DB to CSV).
7-
データベースからCSVファイルを生成します (DB to CSV)。
86
2. Importing data from a CSV file into a database (CSV to DB).
9-
CSVファイルからデータベースにデータを登録します (CSV to DB)。
107

118
## 🐳 Docker Setup
129
If Docker is not available, download it from the [official Docker website](https://www.docker.com/get-started). Follow the installation instructions for your operating system.
1310

14-
注釈: Dockerコマンドが使用できない場合は、[Dockerの公式サイト](https://www.docker.com/get-started)からダウンロードしてインストールしてください。
15-
16-
## How to Run / 実行方法
11+
## How to Run
1712
Steps:
1813
1. Build and run the MySQL container:
1914
```bash
@@ -34,9 +29,7 @@ mysql> SELECT * FROM member WHERE delete_flag = 0 AND type IN (1, 2, 3) ORDER BY
3429

3530
mysql> exit;
3631
```
37-
## 💻 How to Run / 実行方法
38-
39-
Step-by-Step Guide
32+
## 💻 Step-by-Step Guide:
4033
1. Generate the JAR file
4134
Execute the default task to generate the Spring Boot JAR file:
4235
```bash
@@ -84,4 +77,3 @@ java -jar build/libs/dbAndCsvBatch-*.jar --spring.batch.job.name=DB_TO_CSV --spr
8477
java -jar build/libs/dbAndCsvBatch-*.jar --spring.batch.job.name=CSV_TO_DB --spring.profiles.active=server
8578
```
8679
With this module, you can seamlessly integrate database and CSV operations into your Spring Boot batch applications. Happy coding! 🎉
87-

skeletonBatch/README.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,14 @@
11
# Skeleton Batch - Spring Batch Template 🚀
22

3-
## Overview / 概要 🌟
3+
## 🌟 Overview
44

5-
The skeletonBatch module is a streamlined template designed to help you create custom batch jobs effortlessly with Spring Batch.
6-
Simply add your business logic, and you’ll have a fully operational Spring Boot 3 batch application in no time.
5+
The SkeletonBatch module is a streamlined template designed to help you create custom batch jobs effortlessly with Spring Batch. Simply add your business logic, and you’ll have a fully operational Spring Boot 3 batch application in no time.
76

8-
SkeletonBatch モジュールは、Spring Batch を使って簡単かつ効率的にカスタムバッチジョブを作成するためのテンプレートです。
9-
業務ロジックを追加するだけで、すぐに動作する Spring Boot 3 バッチアプリケーションを構築できます。
107
---
118

12-
## How to Run / 実行方法 🔧
9+
## 🔧 How to Run
1310

14-
Step-by-step Instructions
11+
### Step-by-step Instructions
1512
```bash
1613
# Navigate to the skeletonBatch directory
1714
cd skeletonBatch
@@ -25,7 +22,8 @@ ls -ls build/libs/skeletonBatch-*.jar
2522
# Run the skeleton batch application
2623
java -jar build/libs/skeletonBatch-*.jar
2724
```
28-
## Highlights / 特徴 ✨
25+
26+
## ✨ Highlights
2927
- Simple Setup: Pre-configured tasks for quick builds.
3028
- Fast Execution: Minimal effort to start your batch job.
3129
- Customizable: Extend the template with your business logic.

0 commit comments

Comments
 (0)