Foro Wanako1
¿Quieres reaccionar a este mensaje? Regístrate en el foro con unos pocos clics o inicia sesión para continuar.

Foro Wanako1

Programas Gratuitos, Desatendidos y Mucho más!!!
 
PortalPortal  ÍndiceÍndice  BuscarBuscar  Últimas imágenesÚltimas imágenes  ConectarseConectarse  RegistrarseRegistrarse  
Buscar
 
 

Resultados por:
 
Rechercher Búsqueda avanzada
Los posteadores más activos del mes
missyou123
Step By Step Spring Boot Microservices and Cloud  Deployment Vote_lcapStep By Step Spring Boot Microservices and Cloud  Deployment Voting_barStep By Step Spring Boot Microservices and Cloud  Deployment Vote_rcap 
tano1221
Step By Step Spring Boot Microservices and Cloud  Deployment Vote_lcapStep By Step Spring Boot Microservices and Cloud  Deployment Voting_barStep By Step Spring Boot Microservices and Cloud  Deployment Vote_rcap 
大†Shinegumi†大
Step By Step Spring Boot Microservices and Cloud  Deployment Vote_lcapStep By Step Spring Boot Microservices and Cloud  Deployment Voting_barStep By Step Spring Boot Microservices and Cloud  Deployment Vote_rcap 
ПΣӨƧӨFƬ
Step By Step Spring Boot Microservices and Cloud  Deployment Vote_lcapStep By Step Spring Boot Microservices and Cloud  Deployment Voting_barStep By Step Spring Boot Microservices and Cloud  Deployment Vote_rcap 
ℛeℙ@¢ᴋ€r
Step By Step Spring Boot Microservices and Cloud  Deployment Vote_lcapStep By Step Spring Boot Microservices and Cloud  Deployment Voting_barStep By Step Spring Boot Microservices and Cloud  Deployment Vote_rcap 
Engh3
Step By Step Spring Boot Microservices and Cloud  Deployment Vote_lcapStep By Step Spring Boot Microservices and Cloud  Deployment Voting_barStep By Step Spring Boot Microservices and Cloud  Deployment Vote_rcap 
Octubre 2024
LunMarMiérJueVieSábDom
 123456
78910111213
14151617181920
21222324252627
28293031   
CalendarioCalendario
Últimos temas
» SkinFiner 5.3 Multilingual
Step By Step Spring Boot Microservices and Cloud  Deployment EmptyHoy a las 6:26 pm por 大†Shinegumi†大

» Tagtraum Industries beaTunes 5.2.35 (x86/x64)
Step By Step Spring Boot Microservices and Cloud  Deployment EmptyHoy a las 6:02 pm por 大†Shinegumi†大

» Cockos REAPER 7.23 (x86/x64)
Step By Step Spring Boot Microservices and Cloud  Deployment EmptyHoy a las 5:59 pm por 大†Shinegumi†大

» Starry Night Pro Plus v8.1.1.2090
Step By Step Spring Boot Microservices and Cloud  Deployment EmptyHoy a las 5:57 pm por 大†Shinegumi†大

» PassMark MonitorTest v4.0 Build 1002
Step By Step Spring Boot Microservices and Cloud  Deployment EmptyHoy a las 5:54 pm por 大†Shinegumi†大

» WebMinds NetOptimizer v6.5.24.926
Step By Step Spring Boot Microservices and Cloud  Deployment EmptyHoy a las 5:47 pm por 大†Shinegumi†大

» Light Image Resizer 7.0.8.45 Multilingual
Step By Step Spring Boot Microservices and Cloud  Deployment EmptyHoy a las 1:54 pm por ПΣӨƧӨFƬ

» BandiView Pro 7.07 (x64) Multilingual
Step By Step Spring Boot Microservices and Cloud  Deployment EmptyHoy a las 1:50 pm por ПΣӨƧӨFƬ

» YUMI exFAT 1.0.2.8
Step By Step Spring Boot Microservices and Cloud  Deployment EmptyHoy a las 1:48 pm por ПΣӨƧӨFƬ

Sondeo
Visita de Paises
free counters
Free counters

Comparte | 
 

 Step By Step Spring Boot Microservices and Cloud Deployment

Ver el tema anterior Ver el tema siguiente Ir abajo 
AutorMensaje
missyou123
Miembro Mayor
Miembro Mayor


Mensajes : 74547
Fecha de inscripción : 20/08/2016

Step By Step Spring Boot Microservices and Cloud  Deployment Empty
MensajeTema: Step By Step Spring Boot Microservices and Cloud Deployment   Step By Step Spring Boot Microservices and Cloud  Deployment EmptyJue Mayo 20, 2021 12:30 pm

Step By Step Spring Boot Microservices and Cloud  Deployment B1f37df4f62cfcfe053d6f1eb96d3c15
MP4 | Video: h264, 1280x720 | Audio: AAC, 44.1 KHz, 2 Ch
Genre: eLearning | Language: English + srt | Duration: 83 lectures (6h 51m) | Size: 3 GB
Spring security, JWT, Retrofit, Heroku Cloud Deployment via Github, PostgreSQL, H2-Database, Hibernate, Lombok

What you'll 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

Requirements
Basic Java knowledge

Description
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.

Who this course is for
All developers curious about microservices

Step By Step Spring Boot Microservices and Cloud  Deployment 05e3114ad9a2d82defd3ec8a8d53bade

DOWNLOAD:
Citación :

https://rapidgator.net/file/d482fa03834279fb1090c51067a78b3b/7zjxq.Step.By.Step.Spring.Boot.Microservices.and.Cloud.Deployment.part1.rar.html
https://rapidgator.net/file/60c1b2298f57b00726b22534ef88e3e4/7zjxq.Step.By.Step.Spring.Boot.Microservices.and.Cloud.Deployment.part2.rar.html
https://rapidgator.net/file/c98be4e2e81c3a2789f653dac25089f7/7zjxq.Step.By.Step.Spring.Boot.Microservices.and.Cloud.Deployment.part3.rar.html
https://rapidgator.net/file/6530893eafced53064b5aa4d5b9b53ab/7zjxq.Step.By.Step.Spring.Boot.Microservices.and.Cloud.Deployment.part4.rar.html


https://uploadgig.com/file/download/f70f8b9Acbd935b8/7zjxq.Step.By.Step.Spring.Boot.Microservices.and.Cloud.Deployment.part1.rar
https://uploadgig.com/file/download/93125BEBedc693B2/7zjxq.Step.By.Step.Spring.Boot.Microservices.and.Cloud.Deployment.part2.rar
https://uploadgig.com/file/download/7575a7eD1bd438F4/7zjxq.Step.By.Step.Spring.Boot.Microservices.and.Cloud.Deployment.part3.rar
https://uploadgig.com/file/download/302905B1a34Bcc6c/7zjxq.Step.By.Step.Spring.Boot.Microservices.and.Cloud.Deployment.part4.rar


https://nitroflare.com/view/6C3A7B126806EEA/7zjxq.Step.By.Step.Spring.Boot.Microservices.and.Cloud.Deployment.part1.rar
https://nitroflare.com/view/2B00DBDA1ECB780/7zjxq.Step.By.Step.Spring.Boot.Microservices.and.Cloud.Deployment.part2.rar
https://nitroflare.com/view/5F8F39D4AABD349/7zjxq.Step.By.Step.Spring.Boot.Microservices.and.Cloud.Deployment.part3.rar
https://nitroflare.com/view/AC79B3DDECB8BED/7zjxq.Step.By.Step.Spring.Boot.Microservices.and.Cloud.Deployment.part4.rar

Volver arriba Ir abajo
 

Step By Step Spring Boot Microservices and Cloud Deployment

Ver el tema anterior Ver el tema siguiente Volver arriba 
Página 1 de 1.

 Temas similares

-
» Coursera - Building Scalable Java Microservices with Spring Boot and Spring Cloud by Google Cloud
» Udemy - Master Microservices with Spring Boot and Spring Cloud (2020)
» Jump-Start Microservices on Spring Boot and Spring Cloud
» Angular 8 + Spring Boot Microservices and Spring Cloud
» Master Microservices With Spring Boot 3.0 And Spring Cloud

Permisos de este foro:No puedes responder a temas en este foro.
Foro Wanako1 :: Programas o Aplicaciónes :: Ayuda, Tutoriales-