mario1980miranda / user-request-spring-batch

This app reads user data from external API, process into its format and write to its own database

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

User Request Spring Batch Application

How to start

  1. Run docker compose
  2. Create database/schema and DDL:
CREATE DATABASE app;
DROP TABLE IF EXISTS tb_user;
CREATE TABLE tb_user(login VARCHAR(30), name VARCHAR(60), avatar_url VARCHAR(100), PRIMARY KEY(login));
  1. Run application User Request Service App.
  2. Run this application
  3. Use PhpMyAdmin console on localhost:5050 to verify

About

This app reads user data from external API, process into its format and write to its own database


Languages

Language:Java 100.0%