Go Full Stack JWT Authorization With Spring Boot and Angular
Go Full Stack JWT Authorization With Spring Boot and Angular, available at $49.99, has an average rating of 3.35, with 71 lectures, based on 53 reviews, and has 313 subscribers.
You will learn about Full Stack Development with Spring Boot and Angular Spring Boot Model View Controller Structure Angular Model View Controller Structure Java Full Stack Development This course is ideal for individuals who are All developers curious about JWT authorization It is particularly useful for All developers curious about JWT authorization.
Enroll now: Go Full Stack JWT Authorization With Spring Boot and Angular
Summary
Title: Go Full Stack JWT Authorization With Spring Boot and Angular
Price: $49.99
Average Rating: 3.35
Number of Lectures: 71
Number of Published Lectures: 71
Number of Curriculum Items: 71
Number of Published Curriculum Objects: 71
Original Price: $19.99
Quality Status: approved
Status: Live
What You Will Learn
- Full Stack Development with Spring Boot and Angular
- Spring Boot Model View Controller Structure
- Angular Model View Controller Structure
- Java Full Stack Development
Who Should Attend
- All developers curious about JWT authorization
Target Audiences
- All developers curious about JWT authorization
In this course, we will create a project like an user-management-system. When I say user-management-system, we can think of it like that we will have login, register pages and users can sign-in and sign-up from those pages then we can list all users and we can see the details of users.
And we will implement this project using Spring Boot, Angular, and MySQL.
In our project, we will implement CRUD operations. These CRUD operations will be for users. We will use users for user sign-in, sign-up and authorization 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 operations.
Our main operations will be user login, register, user-list etc.
Also, we will go on with the role based application. So we will use different roles like “Admin”, “User”. User role will have typical operations like login, register.
But admin role will have some specific operations like to list all users. 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. Also in the JWT part, we will see the differences between access-tokjen and refresh-token.
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 MySQL as Database. Because most of us are familiar with it.
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 the Lombok library to clear code.
You know that we don’t want to implement getter, setter, equals and hashcode. So we can escape it using Lombok @Data or @Value annotation.
We will use Maven To handle all dependencies on the server side. Actually, here we can also use Gradle. Gradle provides better performance than maven but Maven is the most common one. So we’ll go on with maven.
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 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.
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
Lecture 2: What do We Try to Do in This Course?
Chapter 2: Setting Up Development Environment
Lecture 1: Download and Install Java 11+
Lecture 2: Download and Install Intellij
Lecture 3: Download and Install Lombok on Intellij – Pre Intellij 2021
Lecture 4: Download and Install MySQL
Lecture 5: 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
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: Backend
Lecture 1: Source Code
Lecture 2: Overview – Architecture of Server Side
Lecture 3: Create Project with Spring Initializer
Lecture 4: Create Database-User on MySQL with MySQL-Workbench
Lecture 5: Configure Database Properties on Application Properties
Lecture 6: Implement the User Entity Class
Lecture 7: Do you want to learn more about ID Generated Strategies? – Optional
Lecture 8: Implement the User Repository Class with JPA CRUD Repository
Lecture 9: Implement the User 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: Implement Security – Spring Security
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 Authorization Filter
Chapter 9: Refresh Token
Lecture 1: What is Refresh Token – Refresh Token vs Access Token
Lecture 2: Entity Class for JWT Refresh Token
Lecture 3: Refresh Token Repository – JPA Repository
Lecture 4: Refresh Token Service – Helper Methods for Refresh Token
Chapter 10: Implement User and Admin Operations
Lecture 1: Authenticate User with Authentication Manager – Service
Lecture 2: Create Endpoints for User Sign In, Sign Up and RefreshToken – Controller
Lecture 3: Implement User Controller
Lecture 4: Implement Admin Controller
Chapter 11: Setting Up Development Environment For Client Side
Lecture 1: Install Latest Stable NodeJS
Lecture 2: Install Angular CLI
Chapter 12: Overview – Client Side Frameworks
Lecture 1: Javascript Overview
Lecture 2: Angular Overview
Chapter 13: Client Side (Frontend) and Server Side Integration (Backend)
Lecture 1: Integration – How can we reach to Backend on the Frontend?
Chapter 14: 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 Page Templates – ng generate
Lecture 7: Implement Router Module
Lecture 8: Implement Error Pages – Not-Found and Unauthorized Pages
Chapter 15: Structured Data – Typescript Models
Lecture 1: Implement User Model Typescript Class + Enum Role
Chapter 16: 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 & Test the Register Page Html Part4
Lecture 7: Implement Login Page
Lecture 8: Navigation Bar With Bootstrap – App Component
Chapter 17: Guards & Guard Types
Lecture 1: Implement Authentication Guard – Guard Types
Chapter 18: Http and Observables
Lecture 1: Observables Overview
Lecture 2: Create Base Service Class – Inheritance in Angular
Chapter 19: Admin Dashboard
Lecture 1: Implement Admin Service
Lecture 2: Implement Admin Page Component & View
Lecture 3: Implement Detail Page Component & View
Chapter 20: Other Pages and Services
Lecture 1: Implement User Service
Lecture 2: Implement Profile Page
Chapter 21: Authorization Check
Lecture 1: Refresh Token & Access Token In Angular – Http Interceptor
Instructors
-
Senol Atac
Software Architect
Rating Distribution
- 1 stars: 3 votes
- 2 stars: 2 votes
- 3 stars: 6 votes
- 4 stars: 14 votes
- 5 stars: 28 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 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
- Top 10 Gardening Courses to Learn in November 2024