Mô tả


WELCOME TO MY "COMPLETE E-COMMERCE COURSE - JAVA, SPRING, HIBERNATE AND MYSQL"!


Overview

This is a course about building a E-Commerce website using modern Java Full Stack technologies. Specifically, it's about building an online bookstore

It's about bookstore, but the modules developed in the course is similar for all E-Commerce website. Those modules contains:


- User Signup and Login

- User profile management

- Product Management

- Shopping Cart 

- Order checkout and order history

- Automatic email confirmation


As you can see, those modules are the basics for pretty much any E-Commerce website. Check out the preview lesson for a quick tour of the website!

From the architecture perspective, the system is divided into two parts - Bookstore and AdminPortal. Bookstore is the front-end website that customer will be using for submitting orders while AdminPortal is used for administration purpose. Presumably they will be running on two servers. The good side is the two apps are decoupled in some way so that they can be managed separately. The drawback would be that we need to maintain two copies of the code. We can see that throughout the course.


Why should I take this course?

Because you probably won't find another course out there on similar topic with similar length and detail. This course covers a wide range of topics on building an e-commerce website . It is a step-by-step guide with most of the code hand typing. 

There are students from my other courses complaining that if I copy and paste the code and then explain it, tough it can save some time, students will lose track and drive. That's why I'm developing stuff in this course from scratch and step-by-step.


What does the technology stack look like ?

As this is a full stack development project, we will develop the code for both front-end and backend. A considerable amount of work will be on developing the front-end code using HTML, CSS, Javascript, Thymeleaf, bootstrap and etc. Thymeleaf is the latest Java template engine, which is supposed to replace previous JSP way (JSP is discontinued but is still being used out there) and it is the official template engine backed by Spring Framework, though it's not the only one you can choose. The backend side will be using latest Spring technologies - Spring Boot, Spring Security, Spring Data and etc. Then, we will have MySQL as database. MySQL is powerful and free to use and serves as a good database candidate in plenty of commercial apps out there.


Will I get the source code?

Source code and database scripts are provided in the very beginning of the course. Besides, throughout each lesson (I would say most lessons), the source code will be provided to the progress of the lesson. Yet, I still suggest you to develop with me and take the source code as a reference.


What will I get by the end of the course?

This course shows an example of building an E-Commerce app from scratch. By the end of the course, you will get exposed to various topics and building modules that you need for a basic E-Commerce web app. With the hands-on practice, you will gain a lot of experience that is beyond just the theory. Nevertheless, you can potentially deploy this web app on Heroku as a showcase (see my other course on deploying Spring Boot app on Heroku). This will definitely be helpful during interview if you can showcase this app.

Bạn sẽ học được gì

Know how to develop the basic modules for an E-Commerce website

know how to develop both front-end and back-end

Know how to use HTML, CSS to develop static page

Know how to use bootstrap to prettify the page

Know how to Javascript and JQuery to manipulate DOM object

Know how to use Thymeleaf as template engine

Know how to design a basic E-Commerce architecture

Know how to use Spring Boot to develop backend

know how to use the MVC pattern during development

know how to use MySQL database

Yêu cầu

  • basic knowledge of HTML, CSS, Javascript, Java, Spring Framework, Hibernate, Thymeleaf, MySQL

Nội dung khoá học

11 sections

Introduction and Overview

5 lectures
Download this source files first !!!!
00:01
Course Overview
05:16
Project Tour
11:27
Project Modules
09:17
Tools We Need
03:51

Getting Started

6 lectures
Start Project with Index Page
19:12
Adding Carousel in Index Page
13:16
Adding More Pictures
12:28
Adding Featured-books and Non-responsive CSS
13:36
Navbar
09:07
Adding Common Part of Template
09:01

My Account

12 lectures
Adding MyAccount Page
13:11
Adding MyAccount Page Body
11:41
Adding User Entity, JPA, Hibernate and MySQL
16:03
Adding Security and Security Entities
15:31
Adding Security Configuration
17:38
Adding More to Login
12:24
Adding PasswordResetToken and UserService
15:57
Addin MyProfile Page
20:07
Adding New User Controller
17:30
Adding Create User Logic
20:31
Create New User Trouble Shooting
15:58
Wrapping MyAccount Login
18:27

Getting Started on Admin Portal

10 lectures
Entity Relationship
16:47
AdminPortal - Book Entity
11:47
AdminPortal - Home Template
12:12
AdminPortal - Login Page
16:21
AdminPortal - Add Login Function
10:41
AdminPortal - Adding New Book Form
21:34
AdminPortal - Add New Book Form - part 2
18:21
AdminPortal - Modify New Book Form
06:37
AdminPortal - Add New Book Backend Logic
15:03
AdminPortal - View BookList
11:47

BookStore Frontend

7 lectures
BookStore - Add Bookshelf
23:57
Bookstore - Add Book Detail Page
15:35
Bookstore - Add Book Detail Page - part 2
19:15
AdminPortal - Add BookInfo Page
13:28
AdminPortal - Add Update Book Page
10:55
AdminPortal - Add Update Book Logic
15:32
AdminPortal - Add Various Plugin
15:10

Enhance the Features

11 lectures
Bookstore - Adding MyProfile Controller
18:17
Bookstore - Adding UserShipping and UserPayment
17:28
Bookstore - Add UserShipping and UserBilling Logic
11:17
Bookstore - Add CreditCard Template
20:09
Bookstore - Finish the CreditCard Page
14:58
Bookstore - Add New CreditCard Post Logic
14:18
Bookstore - Add Update CreditCard Info
15:05
Bookstore - Remove CreditCard and Set Default CreditCard
16:16
Bookstore - Add UserShiping Template
11:47
Bookstore - Add New Shipping Logic
15:11
Bookstore - Update Remove and SetDefault for UserShipping
14:11

A Journey of Shopping Cart

8 lectures
Bookstore - Add Entities for ShoppingCart and Order
14:00
Bookstore - Add Other Entities
11:58
Bookstore - Add ShoppingCart Template
20:17
Bookstore - Add More Services and Controls
13:16
Bookstore - Add ShoppingCart Logic
10:05
Bookstore - Add Book to ShoppingCart
18:35
Bookstore - Test Adding Book to ShoppingCart
10:37
Bookstore - Update Qty and Delete function in ShoppingCart
15:22

Starting Checkout

8 lectures
Bookstore - Adding Checkout Page
12:22
Bookstore - Add Shipping Template
14:43
Bookstore - Add Billing Info Template
13:37
Bookstore - Add Review Items Template
11:34
Bookstore - Adding Checkout Related Services
21:10
Bookstore - Adding Checkout Info - part 2
15:56
Bookstore - Add Use This Shipping and Use This Payment
12:22
Bookstore - Add Billing the Same As Shipping
06:30

Submit Order Dance

6 lectures
Bookstore - Handling Order Submit
13:32
Bookstore - Add Create Order Service
11:21
Bookstore - Add Order Confirmation Email Template
20:24
Bookstore - Finish Checkout Order
14:25
Bookstore - Fix UpdateUserInfo
21:46
Bookstore - Debugging Submitting Order and Email
22:06

Some More Features

9 lectures
Bookstore - Add View Order Detail Template
16:35
Bookstore - Add Order Detail Controller
15:03
AdminPortal - Import Book Data
11:38
Bookstore - Scenario Testing and Bug Fixing
13:17
AdminPortal - Add Delete Book Functionality
18:50
AdminPortal - Finish Up Deleting
18:44
Bookstore - Some Other Enhancement
16:38
Bookstore - Add SearchByCategory Logic
20:23
Bookstore - Fuzzy Search
06:51

Wrap Up

1 lectures
Closing
15:15

Đánh giá của học viên

Chưa có đánh giá
Course Rating
5
0%
4
0%
3
0%
2
0%
1
0%

Bình luận khách hàng

Viết Bình Luận

Bạn đánh giá khoá học này thế nào?

image

Đăng ký get khoá học Udemy - Unica - Gitiho giá chỉ 50k!

Get khoá học giá rẻ ngay trước khi bị fix.