Skip to content

Commit 6dfad4a

Browse files
authored
Refine tutorial content on MicroProfile e-Commerce
Revised tutorial content for clarity and detail, enhancing descriptions of microservices and learning objectives.
1 parent 8916948 commit 6dfad4a

File tree

1 file changed

+17
-30
lines changed

1 file changed

+17
-30
lines changed

modules/ROOT/pages/index.adoc

Lines changed: 17 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -49,22 +49,18 @@ First, an overview of the MicroProfile project is presented, followed by detaile
4949

5050
=== Project
5151

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

5456
The MicroProfile e-Commerce application comprises multiple microservices; among the key ones are the following:
5557

5658
- **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-
5859
- **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-
6060
- **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-
6261
- **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-
6462
- **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-
6663
- **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-
6864
- **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.
6965

7066
:imagesdir: ../assets/images
@@ -90,44 +86,35 @@ we assume you have a basic understanding of RESTful Web Services.
9086
=== Learning Objectives
9187

9288
* Understanding MicroProfile and Its Ecosystem:
93-
9489
** Gain a solid understanding of what MicroProfile is and its role in modern cloud-native application development.
95-
9690
** 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.
10092
* 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.
106103
* 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.
110106
* Securing Microservices:
111-
112107
** Learn the intricacies of securing microservices using MicroProfile JWT and Security API.
113-
114108
* Effective Data Management in Microservices:
115-
116109
** Understand the role of JPA and JSON-B in MicroProfile for handling data operations in microservices.
117-
118110
* Monitoring and Tracing:
119-
120111
** Implement monitoring strategies using MicroProfile Metrics.
121-
122112
** Learn to trace microservice interactions with OpenTracing for enhanced observability.
123-
124113
* Collaborative Learning and Community Engagement:
125-
126114
** Participate in Q&A sessions, forums, and interactive discussions.
127-
128115
** Engage with the MicroProfile community for continuous learning and staying updated with the latest trends.
129116

130-
By the end of this tutorial readers will gain the knowledge and skills necessary to design, develop, and deploy robust microservices 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.
131118

132119
== Conventions
133120
[width="99%",cols="20%,38%,37%"]

0 commit comments

Comments
 (0)