You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/ROOT/pages/index.adoc
+17-30Lines changed: 17 additions & 30 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,22 +49,18 @@ First, an overview of the MicroProfile project is presented, followed by detaile
49
49
50
50
=== Project
51
51
52
-
In this tutorial, you will learn to build a microservices-based e-commerce application called "MicroProfile e-Commerce". The app will demonstrate the use of MicroProfile APIs for developing an application based on microservices and cloud-native architecture. It would include multiple microservices, each serving a different purpose and highlighting different aspects of MicroProfile. You can use this adaptation as a practical case study to implement MicroProfile APIs in real-world applications.
52
+
In this tutorial, you will learn to build a microservices-based e-commerce application called "MicroProfile e-Commerce". The app will demonstrate the use of MicroProfile APIs for developing an application based on microservices and cloud-native architecture.
53
+
54
+
It would include multiple microservices, each serving a different purpose and highlighting different aspects of MicroProfile. You can use this adaptation as a practical case study to implement MicroProfile APIs in real-world applications.
53
55
54
56
The MicroProfile e-Commerce application comprises multiple microservices; among the key ones are the following:
55
57
56
58
- **Product Catalog**: This service acts as the central repository for all product-related information, including detailed descriptions, pricing, and inventory levels. It provides APIs for fetching product details efficiently for the other microservices, such as the Shopping Cart. This microservice is vital for updating product data, ensuring data consistency and accuracy across the e-commerce platform.
57
-
58
59
- **The Shopping Cart** : This service allows users to add or remove products from their shopping cart. It communicates with the Product Catalog Microservice to access up-to-date product information. It handles the storage and management of cart items for each user, including the calculation of cart totals with applicable discounts or promotions. This microservice interfaces with the Checkout microservice to initiate the order processing.
59
-
60
60
- **User Management**: This service is responsible for user account management and handles registration, login, and account updates securely using JWT tokens. It is essential for personalizing the user experience and safeguarding user information.
61
-
62
61
- **Order Processing**: This service manages the entire order process, from collecting shipping information and confirming order details to initiating payment processing. This microservice ensures a seamless transition from shopping to order completion.
63
-
64
62
- **Payment**: Dedicated to processing payments, this microservice interacts with external payment gateways to securely handle transactions. It receives payment instructions from the Checkout microservice, executes the payment process, and confirms transaction outcomes. This microservice ensures financial transactions are processed securely and efficiently and maintains the integrity of the payment process.
65
-
66
63
- **Inventory**: This service is dedicated to monitoring and managing inventory levels. It tracks product availability, updates inventory in real-time as sales occur, and provides restocking alerts. By integrating with the Product Catalog and Checkout microservices, it ensures that product availability is accurately reflected on the platform and that orders are only placed for in-stock items. This microservice is crucial for maintaining optimal inventory levels and preventing stockouts, thereby enhancing the customer shopping experience.
67
-
68
64
- **Shipping**: This microservice is responsible for managing the logistics of order delivery. It receives order details and shipping information from the Order Processing Microservice, ensuring that orders are shipped to customers in a timely and efficient manner. The Shipping Microservice plays a critical role in the post-purchase customer experience, managing expectations and communication regarding order delivery.
69
65
70
66
:imagesdir: ../assets/images
@@ -90,44 +86,35 @@ we assume you have a basic understanding of RESTful Web Services.
90
86
=== Learning Objectives
91
87
92
88
* Understanding MicroProfile and Its Ecosystem:
93
-
94
89
** Gain a solid understanding of what MicroProfile is and its role in modern cloud-native application development.
95
-
96
90
** Learn about the evolution of MicroProfile and its relationship with Jakarta EE.
97
-
98
-
** Understand how MicroProfile facilitates building microservices.
99
-
91
+
** Understand how MicroProfile facilitates the development of lightweight, portable, and independently deployable microservices.
100
92
* Hands-On Experience with Key MicroProfile APIs:
101
-
102
-
** Learn to implement Config, Health, Metrics, JWT Authentication, Fault Tolerance, Rest Client, and other MicroProfile APIs.
103
-
104
-
** Understand how to apply these APIs in practical scenarios through the Duke's Forest application case study.
105
-
93
+
** Learn to implement core MicroProfile APIs including Config, Health, Metrics, JWT Authentication, Fault Tolerance, REST Client, OpenAPI and Telemetry.
94
+
** Gain practical experience applying these APIs in the MicroProfile e-commerce application case study.
95
+
* Event-Driven and Reactive Microservice
96
+
** Understand the principles of event-driven architecture in microservices.
97
+
** Learn to build asynchronous, message-driven services using MicroProfile Reactive Messaging.
98
+
** Explore integration with messaging systems such as Kafka or other brokers for scalable, decoupled communication.
99
+
* API Design and Data Querying with GraphQL
100
+
** Understand the fundamentals of GraphQL and its advantages over traditional REST APIs
101
+
** Learn to design flexible, client-driven APIs using MicroProfile GraphQL 2.0.
102
+
** Implement GraphQL endpoints within MicroProfile-based microservices.
106
103
* Building Resilient and Scalable Services:
107
-
108
-
** Master techniques for developing resilient services using fault tolerance and health checks.
109
-
104
+
** Master techniques for developing resilient services using fault tolerance patterns such as retries, timeouts, circuit breakers and bulkhead.
105
+
** Implement health checks to ensure service readiness and liveness in cloud environments.
110
106
* Securing Microservices:
111
-
112
107
** Learn the intricacies of securing microservices using MicroProfile JWT and Security API.
113
-
114
108
* Effective Data Management in Microservices:
115
-
116
109
** Understand the role of JPA and JSON-B in MicroProfile for handling data operations in microservices.
117
-
118
110
* Monitoring and Tracing:
119
-
120
111
** Implement monitoring strategies using MicroProfile Metrics.
121
-
122
112
** Learn to trace microservice interactions with OpenTracing for enhanced observability.
123
-
124
113
* Collaborative Learning and Community Engagement:
125
-
126
114
** Participate in Q&A sessions, forums, and interactive discussions.
127
-
128
115
** Engage with the MicroProfile community for continuous learning and staying updated with the latest trends.
129
116
130
-
By the end of this tutorial readers will gain the knowledge and skills necessary to design, develop, and deploy robustmicroservices using MicroProfile, preparing them for advanced roles in software development and architecture in cloud-native environments.
117
+
By the end of this tutorial readers will have the knowledge and hands-on experience required to architect, develop, deploy, secure, and observe robust, event-driven microservices using MicroProfile. They will be well-prepared for advanced roles in software development and architecture in cloud-native environments.
0 commit comments