https://suraj-bookstore.herokuapp.com
https://suraj-bookstore.herokuapp.com/books
├── pom.xml ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ └── example │ │ │ └── Surajbookstore │ │ │ ├── SurajbookstoreApplication.java │ │ │ ├── WebSecurityConfig.java │ │ │ ├── domain │ │ │ │ ├── Book.java │ │ │ │ ├── BookRepository.java │ │ │ │ ├── Category.java │ │ │ │ ├── CategoryRepository.java │ │ │ │ ├── User.java │ │ │ │ └── UserRepository.java │ │ │ └── web │ │ │ ├── BookController.java │ │ │ └── UserDetailServiceImplementation.java │ │ └── resources │ │ ├── application.properties │ │ ├── static │ │ │ └── css │ │ │ └── bootstrap.min.css │ │ └── templates │ │ ├── addbook.html │ │ ├── booklist.html │ │ ├── editbook.html │ │ └── login.html │ └── test │ └── java │ └── com │ └── example │ └── Surajbookstore │ ├── BookRepositoryTest.java │ ├── CategoryRepositoryTest.java │ ├── SurajbookstoreApplicationTests.java │ ├── UserRepositoryTest.java │ └── WebLayerTest.java └──
- CRUD operations available.
- More rights to admin
- Gained basic knowledge on creating simple backend application with spring boot
- Basic idea in creating rest apis
- Deploying applications in heroku platform