Ends in:
5 DAYS
18 HRS
8 MIN
6 SEC
Ends in:
5 D
18 H
8 M
6 S

Microservice Tutorial Part 04: Creating the initial Ordering service

In the previous part, we implemented the Catalog microservice functionality using ABP Suite. In this part, we will create the Ordering microservice, and the following part will cover implementing its functionality manually.

Creating the Ordering Microservice

Right-click the services folder in the Solution Explorer panel, select the Add -> New Module -> Microservice command:

abp-studio-add-new-microservice-command

This command opens a new dialog to define the properties of the new microservice. You can use the following values to create a new microservice named OrderingService:

abp-studio-add-new-microservice-dialog

When you click the Next button, you are redirected to the database provider selection step.

Selecting the Database Type

Here, you can select the database provider to be used by the new microservice:

abp-studio-add-new-microservice-dialog-database-step

Select Entity Framework Core option and proceed the Next step.

Integrating to the Solution

In this step, we can select the options for integrating the new microservice to the rest of the solution components:

abp-studio-add-new-microservice-dialog-integration-step

ABP Studio intelligently selects the right values for you, but you should still check them carefully since they directly affect what we will do in the next parts of this tutorial.

Ensure the options are configured the same as in the preceding figure, and click the Next button.

Additional Options

abp-studio-add-new-microservice-dialog-additional-options-step

In this step, you can select additional options for the new microservice. You can leave them as default and click the Create button.

That's all, ABP Studio creates the new microservice and arranges all the integration and configuration for you.

Exploring the New Ordering Microservice

In this section, we will investigate the new microservice in overall.

Understanding the Solution Structure

Just like the Catalog microservice, the Ordering microservice is a .NET solution that contains multiple projects. You can see the solution structure in the Solution Explorer panel:

abp-studio-solution-explorer-ordering-microservice

  • CloudCrm.OrderingService is the main project that you will implement your service. It typically contains your entities, repositories, application services, API controllers, etc.
  • CloudCrm.OrderingService.Contracts project can be shared with the other services and applications. It typically contains interfaces of your application services, data transfer objects, and some other types you may want to share with the clients of this microservice.
  • CloudCrm.OrderingService.Tests is for building your unit and integration tests for this microservice.

Running the New Service

You can run the solution using ABP Studio's Solution Runner. It will also run the new Ordering service as a part of the solution.

Before running the solution, ensure that all the applications are built. If you are not sure, right-click the root item (CloudCrm) in the Solution Explorer panel and select the Build -> Graph Build command.

Click the Play button near to the solution root:

abp-studio-run-solution

Browsing the Ordering Service

After the application is started, you can right-click and Browse on the CloudCrm.OrderingService application to open it in the ABP Studio's pre-integrated browser. You can see the Orders controller in the Swagger UI:

abp-studio-browse-ordering-service

Opening the Ordering Database

You can use the SQL Server Management Studio or any other tool to connect to the Ordering service's database. Use localhost,1434 as the Server name, select the SQL Server Authentication as the Authentication type, use sa as the Login name and myPassw@rd as the Password value. You can find these values in the appsettings.json file in the CloudCrm.OrderingService project of the .NET solution of the Ordering microservice:

sql-server-management-studio-databases-2

Similarly the Ordering service's database has only three initial table. The first one is for Entity Framework Core's migration system, and the others are for ABP's distributed event bus to properly apply transactional events using the outbox and inbox patterns. You don't need to care about these tables since they are created and managed by Entity Framework Core and ABP.

Summary

In this part, we've created the initial Ordering microservice. We will implement its functionality in the next part.


Contributors


Last updated: November 26, 2024 Edit this page on GitHub

Was this page helpful?

Please make a selection.

To help us improve, please share your reason for the negative feedback in the field below.

Please enter a note.

Thank you for your valuable feedback!

Please note that although we cannot respond to feedback, our team will use your comments to improve the experience.

In this document
Community Talks

What’s New with .NET 9 & ABP 9?

21 Nov, 17:00
Online
Watch the Event
Mastering ABP Framework Book
Mastering ABP Framework

This book will help you gain a complete understanding of the framework and modern web application development techniques.

Learn More