Step By Step Spring Boot Microservices and Cloud Deployment
Step By Step Spring Boot Microservices and Cloud Deployment, available at $44.99, has an average rating of 4.4, with 88 lectures, based on 20 reviews, and has 169 subscribers.
You will learn about Spring Boot Spring Security Retrofit Heroku Cloud Deployment CI/CD with Github Different Databases like PostgreSQL and In Memory H2-Database Microservices vs Mono-service This course is ideal for individuals who are All developers curious about microservices It is particularly useful for All developers curious about microservices.
Enroll now: Step By Step Spring Boot Microservices and Cloud Deployment
Summary
Title: Step By Step Spring Boot Microservices and Cloud Deployment
Price: $44.99
Average Rating: 4.4
Number of Lectures: 88
Number of Published Lectures: 88
Number of Curriculum Items: 88
Number of Published Curriculum Objects: 88
Original Price: $19.99
Quality Status: approved
Status: Live
What You Will Learn
- Spring Boot
- Spring Security
- Retrofit
- Heroku Cloud Deployment
- CI/CD with Github
- Different Databases like PostgreSQL and In Memory H2-Database
- Microservices vs Mono-service
Who Should Attend
- All developers curious about microservices
Target Audiences
- All developers curious about microservices
Hi guys,
In this course, we will talk about the architecture of our project.
In this course, we will create a project like product-ordering-application.
When we say product-ordering-application, we can think of it like that we will have a product-list page such as book-list, food-list or dress-list. Somehow users or customers will see these product-lists and they can buy one of the products. Of course, at the end of it, this transaction will be logged.
Actually, in our application, we will try to implement these processes with different microservices.
To implement this application, we will use three different microservices.
Our microservices will be api-gateway, product-service and transaction-service.
In api-gateway, we will manage APIs. This microservice will be a gateway for the whole application. To access the other services, we will use this microservice. In this microservice, we will handle user-management also. We will authorize users and if the users are authorized, other services can be available.
In product-service, we will manage product CRUD operations. This service will be a product-management-service.
In transaction-service, we will manage transaction CRUD operations. This service will store the logs coming from the product purchases. For example, the UserX bought the ProductX on DateX etc.
Our microservices dependency process will be like that. First of all, the client can access the api-gateway. To access the api-gateway, the client should pass the login process. Then other services will be accessible over the api-gateway.
Spring-security will be one of the main topics in our application. Also, we will use JWT to provide security.
Here, the important point is, we will also use secure connections among microservices. To provide it, we will use secure-key-tokens.
As a database, we will use PostgreSQL and H2Database. We can use other databases also but at the end of it we will deploy our codes to Heroku. These databases can be used on Heroku freely so we chose these databases.
We will provide connection between microservices with Retrofit library. Retrofit will handle all our networking issues.
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.
In addition to these libraries, In our project, we will use lots of technologies like Spring Boot, Spring Security, Hibernate, PostgreSQL, Gradle, Lombok, Heroku etc.
Of course here, our main library will be Spring-boot. It will provide a simpler and faster way to set up, configure and database to provide data.
At the end of each microservices, we will test our applications with Postman. Postman is another amazing tool to debug networking.
That’s all about the microservices architecture of our project.
Thank you.
Course Curriculum
Chapter 1: Introduction
Lecture 1: Introduction – Architecture of All System
Lecture 2: Advantages and Disadvantages of Microservices
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: Microservice 1 – Product Service
Lecture 1: Source Code for the Product Microservice
Lecture 2: Overview – Architecture of Microservice
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: Implement the Product Entity Class
Lecture 8: Do you want to learn more about ID Generated Strategies? – Optional
Lecture 9: Implement the Product Repository Class with JPA CRUD Repository
Lecture 10: Implement the Product Service Class – Business Layer
Lecture 11: Implement the Product Controller Class – Rest API
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: Product Microservice – Security Implementation
Lecture 1: Implement Security on the Product Microservice
Chapter 8: Test Spring Boot Application
Lecture 1: Postman Overview
Lecture 2: How can we run Spring Boot Application?
Lecture 3: Test the Endpoints of Product Microservice with Postman
Chapter 9: Multiple Spring Profiles – Development, Production
Lecture 1: Create Spring Profiles for Development and Production
Chapter 10: Cloud Deployment – Heroku
Lecture 1: Heroku Overview
Lecture 2: Heroku Configuration – Procfile, app.json
Lecture 3: Github Commitment
Lecture 4: Deploy the Product Microservice to Heroku over Github and Testing
Chapter 11: Microservice 2 – Transaction Service
Lecture 1: Source Code for the Transaction Microservice
Lecture 2: Overview – Architecture of the Transaction Service
Lecture 3: Create Project with Spring Initializer
Lecture 4: Configure Database Properties on Application Properties
Lecture 5: Implement the Transaction Entity Class
Lecture 6: Implement the Transaction Repository Class with JPA CRUD Repository
Lecture 7: Implement the Transaction Service Class – Business Layer
Lecture 8: Implement the Transaction Controller Class – Rest API
Lecture 9: Implement Security on the Transaction Microservice
Chapter 12: Test Transaction Microservice
Lecture 1: Test the Endpoints of Transaction Microservice with Postman
Chapter 13: Cloud Preparation and Deployment – Transaction Microservice
Lecture 1: Multiple Spring Profiles – Development, Production
Lecture 2: Heroku Configuration – Procfile, app.json
Lecture 3: Spring Boot 2.5.X plain.jar Problem
Lecture 4: Github Commitment
Lecture 5: Deploy the Transacttion Microservice to Heroku over Github and Testing
Chapter 14: Microservice 3 – Gateway Service
Lecture 1: Source Code for the Gateway Microservice
Lecture 2: Overview – Architecture of the Gateway Service
Lecture 3: Create Gateway Project with Spring Initializer
Lecture 4: Create Database for Gateway on PostgreSQL with PgAdmin
Lecture 5: Configure Database Properties on Application Properties
Lecture 6: Implement the User Entity Class
Lecture 7: Implement the User Repository Class – JPA CRUD Repository
Lecture 8: Implement the User Service Class – Business Layer
Chapter 15: Implement Security on the Gateway
Lecture 1: Load User by Username – User Details Service
Lecture 2: Configure Security on the Gateway – Authentication Manager and HttpSecurity
Lecture 3: Circular Reference Error – Spring Boot 2.6+
Chapter 16: 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 17: 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 18: Microservice Communication – Retrofit
Lecture 1: Retrofit Overview and Install Libraries of Retrofit
Lecture 2: Retrofit vs Open Feign
Lecture 3: Gson Configuration – Serialization and Deserialization
Lecture 4: Retrofit Configuration – Create Secure Connection Over OkHttp
Chapter 19: Communication with Product Microservice – Retrofit
Lecture 1: Configuration and Implement Product Microservice Endpoints with Retrofit
Lecture 2: Execute Endpoints of the Product Microservice – Service Layer
Lecture 3: Create Gateway Endpoints for the Product Microservice – Rest Controller
Chapter 20: Communication with the Transaction Microservice – Retrofit
Lecture 1: Configuration and Implement Transaction Microservice Endpoints with Retrofit
Lecture 2: Execute Endpoints of the Transaction Microservice – Service Layer
Lecture 3: Create Gateway Endpoints for the Transaction Microservice – Rest Controller
Instructors
-
Senol Atac
Software Architect
Rating Distribution
- 1 stars: 1 votes
- 2 stars: 1 votes
- 3 stars: 1 votes
- 4 stars: 4 votes
- 5 stars: 13 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