Skip to content

SpringBoot, PostgreSQL, Thymeleaf, and Bootstrap web application with pagination and table sorting.

Notifications You must be signed in to change notification settings

adamthecreator369/BookManagementSystem2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 

Repository files navigation

BookManagementSystem2

SpringBoot, PostgreSQL, Thymeleaf, and Bootstrap web application with pagination and table sorting.

Screen Shot 2021-09-11 at 1 19 26 AM

2 create

3 update

4 error page

Creating the Postgres database Terminal commands (in order):

psql
CREATE DATABASE books;
\c books
CREATE TABLE book (
id bigint,
isbn varchar(30),
title varchar(100),
author varchar(100),
status varchar(15),
PRIMARY KEY (id)
);
GRANT ALL PRIVILEGES ON DATABASE books to yourusername;
GRANT ALL PRIVILEGES ON DATABASE books to postgres;
\q

Table Structure
Screen Shot 2021-09-10 at 10 29 14 PM

About

SpringBoot, PostgreSQL, Thymeleaf, and Bootstrap web application with pagination and table sorting.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages