Java Full Stack Spring Boot and Angular (Inc. JWT + Cloud)
Java Full Stack Spring Boot and Angular (Inc. JWT + Cloud), available at $59.99, has an average rating of 4.3, with 102 lectures, based on 72 reviews, and has 398 subscribers.
You will learn about Develop a Spring Boot backend using REST APIs and PostgreSQL database Develop a Angular frontend using Angular CLI, Routers Develop a Heroku Cloud Deployment from Java and Angular in production mode Cloud Deployment for Java and NodeJS Heroku Cloud Deployment Learn the basics of Angular – Angular Modules, Components, Data Binding and Routing Role Base Authorization and Authentication Use Spring Security to configure Basic Authentication and JWT Learn the magic of Spring Boot – Auto Configuration, Spring Initializr and Starter Projects RXJS Observables and Observers This course is ideal for individuals who are All developers curious about Java and NodeJS It is particularly useful for All developers curious about Java and NodeJS.
Enroll now: Java Full Stack Spring Boot and Angular (Inc. JWT + Cloud)
Summary
Title: Java Full Stack Spring Boot and Angular (Inc. JWT + Cloud)
Price: $59.99
Average Rating: 4.3
Number of Lectures: 102
Number of Published Lectures: 102
Number of Curriculum Items: 102
Number of Published Curriculum Objects: 102
Original Price: $19.99
Quality Status: approved
Status: Live
What You Will Learn
- Develop a Spring Boot backend using REST APIs and PostgreSQL database
- Develop a Angular frontend using Angular CLI, Routers
- Develop a Heroku Cloud Deployment from Java and Angular in production mode
- Cloud Deployment for Java and NodeJS
- Heroku Cloud Deployment
- Learn the basics of Angular – Angular Modules, Components, Data Binding and Routing
- Role Base Authorization and Authentication
- Use Spring Security to configure Basic Authentication and JWT
- Learn the magic of Spring Boot – Auto Configuration, Spring Initializr and Starter Projects
- RXJS Observables and Observers
Who Should Attend
- All developers curious about Java and NodeJS
Target Audiences
- All developers curious about Java and NodeJS
In this course, we will create a new project like online-book-shopping.
When I say online-book-shopping application, we can think of it like that we will have a book-list page. Somehow users or customers will see these book-lists and they can buy one of them. Of course, at the end of it, this purchase will be stored and displayed later.
And we will implement this project using Spring Boot, Angular, and PostgreSQL.
In our project, we will implement CRUD operations. These CRUD operations will be for users and books. We will use users for user sign-in, sign-up and authorization operations. And we will use the books for creating, editing, deleting book operations.
These CRUD operations will be requested from Angular. So on the backend, we will create an infrastructure for these CRUD operations and on the frontend, we will serve them with the user interface.
Our project goes on with User and book operations.
Our main operations will be user login, register, book-list, create-book, delete-book etc.
Also, we will go on with the role based application. So we will use different roles like “Admin”, “User”. Then we will provide different authorizations to these users according to the role.
And this all things will be provided with a secure way in both Angular and Spring Boot.
We will have two main components to implement our project.
These are server side and client side.
In Server Side:
Of course here, our main library will be Spring-boot. We will implement the whole infrastructure on the backend with the Spring boot. It will provide easy and fast configuration to us.
We will implement the Model view controller architecture on our project.
Spring-security will be one of the main topics in our application. Also, we will use JWT to provide security.
In Spring Boot, Data will be presented to the client as an API call so Spring Rest Controller will be used to handle it.
We will use PostgreSQL as Database. We can use other databases also but at the end of it we will deploy our codes to Heroku. Postgresql can be used on Heroku for free so we chose that.
We will also use Object Relational Mapping with Java Persistence API and Hibernate.
You know, We can map our database tables to objects with hibernate.
We will use JPA Repository and Crud Repository in Spring Boot.
So these repository templates will handle common database operations like save, update, find, delete.
With Spring Boot, we will also use Lombok library to clear code.
You know that we don’t want to implement getter, setter, equals and hash code. So we can escape it using Lombok @Data or @Value annotation.
We will use Gradle To handle all dependencies on server side.
For our all services, we will create cloud deployment with Heroku. Heroku is an amazing free framework. We can deploy our spring-boot projects with some configuration over github easily. So At the end of the course, we will have an application on production and we will have a code on github that is accessible by everyone.
That’s all about Server side.
Let’s talk about Client Side.
We will create an angular application on the client side and it will provide a cool user-interface. So we will create some pages like home-page, admin dashboard, login page and register-page. Then we will assign the server apis to these pages and we will consume and produce the data from the user-interface easily and user friendly.
On angular, we will also implement the model view controller architecture. We will use the cool features of typescript etc.
At the end of it, we will build it and we will serve it to heroku also. So at the end of the course, we will have a live application on production.
Last but not least, we will implement security and authorization on angular also. We will work with different roles and according to these roles, we will implement unauthorized and not-found pages on the user interface also.
We will see the details of them one by one.
Course Curriculum
Chapter 1: Introduction
Lecture 1: Introduction – Architecture of All System
Chapter 2: Setting Up Development Environment
Lecture 1: Download and Install Java 11+
Lecture 2: Download and Install Intellij
Lecture 3: Download and Install PostgreSQL
Lecture 4: Download and Install Git
Lecture 5: Download and Install Lombok on Intellij
Lecture 6: Download and Install Postman
Chapter 3: Overview for Basic Frameworks and Tools
Lecture 1: Spring Boot Overview – Annotations, Beans, Configuration
Lecture 2: Rest API Overview – Http Methods
Lecture 3: SQL Overview – Basic CRUD Operations
Lecture 4: Lombok Overview – Getter, Setter, Constructors
Lecture 5: Git Overview – Git vs Github
Chapter 4: Restful Web Services – Overview
Lecture 1: @RequestParam Annotation and How does it work?
Lecture 2: @PathVariable Annotation and How does it work?
Lecture 3: @RequestBody Annotation and How does it work?
Chapter 5: Spring Boot – Backend – Server Side
Lecture 1: Source Code for the Backend
Lecture 2: Overview – Architecture of Backend Project
Lecture 3: Create Project with Spring Initializer
Lecture 4: Why Did We Choose Gradle? Isn't Maven most common one?
Lecture 5: Create Database on PostgreSQL with PgAdmin
Lecture 6: Configure Database Properties on Application Properties
Lecture 7: Entity Diagram
Lecture 8: Implement The User Entity Model Class
Lecture 9: Do you want to learn more about ID Generated Strategies? – Optional
Lecture 10: Implement The Book Entity Model Class
Lecture 11: Implement The Purchase Entity Model Class
Lecture 12: Implement the User Repository Class with JPA CRUD Repository
Lecture 13: Implement the Book Repository Class with JPA CRUD Repository
Lecture 14: Implement the Purchase Repository Class with JPA CRUD Repository + Projections
Lecture 15: Implement the User Service Class – Business Layer
Lecture 16: Implement the Book Service Class – Business Layer
Lecture 17: Implement the Purchase Service Class – Business Layer
Chapter 6: Overview for Spring Security – Optional
Lecture 1: What is Authentication?
Lecture 2: What is Authorization?
Lecture 3: How does Spring Security handle Authentication and Authorization?
Chapter 7: Security Implementation
Lecture 1: Load User by Username – User Details Service
Lecture 2: Configure Security – Authentication Manager and HttpSecurity
Lecture 3: Circular Reference Error – Spring Boot 2.6+
Chapter 8: JWT Implementation
Lecture 1: JWT Overview and Install JWT Libraries
Lecture 2: JWT Helper Methods – Token Generation, Validation
Lecture 3: Implement JWT Authentication Filter
Chapter 9: Implement User Log In and User Sign Up
Lecture 1: Authenticate User with Authentication Manager – Service
Lecture 2: Create Endpoints for User Log In and User Sign Up – Controller
Chapter 10: Internal API Implementation
Lecture 1: Create Internal Authentication Filter
Lecture 2: Create Connection between JWT and Internal Filters
Lecture 3: Internal Controller Implementation
Chapter 11: Other Endpoints – Rest Controller
Lecture 1: Implement Book Controller – Rest Controller
Lecture 2: Implement Purchase Controller – Rest Controller
Chapter 12: Test Spring Boot Application
Lecture 1: Postman Overview
Lecture 2: How can we run Spring Boot Application?
Lecture 3: Test the Endpoints with Postman
Chapter 13: Multiple Spring Profiles – Development, Production
Lecture 1: Create Spring Profiles for Development and Production
Chapter 14: Cloud Deployment – Heroku
Lecture 1: Heroku Overview
Lecture 2: Heroku Configuration – Procfile, app.json
Lecture 3: Github Commitment
Lecture 4: Deploy to Heroku
Lecture 5: Test Project with the Heroku URL
Chapter 15: Setting Up Development Environment For Client Side
Lecture 1: Install NodeJS
Lecture 2: Install Angular CLI
Lecture 3: Javascript Overview
Lecture 4: Angular Overview
Chapter 16: Client Side (Frontend) and Server Side Integration (Backend)
Lecture 1: Integration – How can we reach to Backend on the Frontend?
Chapter 17: Client Side Implementation
Lecture 1: Source Code for the Frontend
Lecture 2: Overview – Architecture of Frontend Project
Lecture 3: Create Angular Project With Angular CLI
Lecture 4: Getting Start to Angular Project – How angular works?
Lecture 5: Configuration (BootStrap, Jquery, Font-Awesome…)
Lecture 6: Create Component/Page Templates
Lecture 7: Implement Router Module
Lecture 8: Implement Error Pages – Not-Found and Unauthorized Pages
Chapter 18: Structured Data – Typescript Models
Lecture 1: Implement User Model TypeScript Class
Lecture 2: Implement Book Model TypeScript Class
Lecture 3: Implement Purchase Model TypeScript Class
Lecture 4: Implement PurchaseItem Model TypeScript Class – DTO
Chapter 19: Form Module, FormItem, FormGroup – SignIn and SignUp Forms
Lecture 1: Authentication Service Implementation – Sign-in, Sign-out, Sign-up
Lecture 2: Implement Register Page Component
Lecture 3: Implement Register Page Html Part1 – Create Page Template
Lecture 4: Template Driven Form vs Reactive Form – Register Page Html Part2
Lecture 5: Implement Register Page Html Part3 – FormsModule, FormControl, FormGroup
Lecture 6: Complete the Register Page Html Part4
Lecture 7: Implement Login Page
Instructors
-
Senol Atac
Software Architect
Rating Distribution
- 1 stars: 3 votes
- 2 stars: 3 votes
- 3 stars: 4 votes
- 4 stars: 18 votes
- 5 stars: 44 votes
Frequently Asked Questions
How long do I have access to the course materials?
You can view and review the lecture materials indefinitely, like an on-demand channel.
Can I take my courses with me wherever I go?
Definitely! If you have an internet connection, courses on Udemy are available on any device at any time. If you don’t have an internet connection, some instructors also let their students download course lectures. That’s up to the instructor though, so make sure you get on their good side!
You may also like
- Top 10 Language Learning Courses to Learn in November 2024
- Top 10 Video Editing Courses to Learn in November 2024
- Top 10 Music Production Courses to Learn in November 2024
- Top 10 Animation Courses to Learn in November 2024
- Top 10 Digital Illustration Courses to Learn in November 2024
- Top 10 Renewable Energy Courses to Learn in November 2024
- Top 10 Sustainable Living Courses to Learn in November 2024
- Top 10 Ethical AI Courses to Learn in November 2024
- Top 10 Cybersecurity Fundamentals Courses to Learn in November 2024
- Top 10 Smart Home Technology Courses to Learn in November 2024
- Top 10 Holistic Health Courses to Learn in November 2024
- Top 10 Nutrition And Diet Planning Courses to Learn in November 2024
- Top 10 Yoga Instruction Courses to Learn in November 2024
- Top 10 Stress Management Courses to Learn in November 2024
- Top 10 Mindfulness Meditation Courses to Learn in November 2024
- Top 10 Life Coaching Courses to Learn in November 2024
- Top 10 Career Development Courses to Learn in November 2024
- Top 10 Relationship Building Courses to Learn in November 2024
- Top 10 Parenting Skills Courses to Learn in November 2024
- Top 10 Home Improvement Courses to Learn in November 2024