Skip to content

njw0619/bookstore-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bookstore API

Spec

  • Springboot
  • Kotlin
  • MySQL
  • Gradle

Prerequisite

  • Table Schema
create table book_store (
    id bigint(20) not null primary key auto_increment,
    name varchar(20),
    createdAt timestamp(6) not null,
    updatedAt timestamp(6) not null
);
 
create table book (
    id bigint(20) not null primary key auto_increment,
    name varchar(20), 
    bookstore_id bigint(20),
    createdAt timestamp(6) not null,
    updatedAt timestamp(6) not null
);

To-Do

  • Apply Vault for getting secret like database information
  • Logger
  • Unit Test
  • Exception handling

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages