Skip to content

Latest commit

 

History

1 Commit

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages