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

Microservice Tutorial Part 03: Building the Catalog service

In the previous part, we've created a new microservice named Catalog. In this part, we will build functionality to create and manage products in our system.

In this part, we will use ABP Suite to automatically create all the necessary code for us. So, you will see how to use ABP Suite in a microservice solution. We will do everything manually while we will create the Ordering microservice in next parts, so you will learn the details better. We suggest to use ABP Suite wherever it is possible, because it saves a lot of time. You can then investigate the changes done by ABP Suite to understand what it produced.

Opening the ABP Suite

First of all, stop all the applications in ABP Studio's Solution Runner panel, because ABP Suite will make changes in the solution and it will also needs to build the solution in some steps. Running the solution prevents to build it.

Now, select the ABP Suite -> Open command on the main menu to open ABP Suite:

abp-studio-open-abp-suite

It will ask to you which module you want to use:

abp-studio-open-abp-suite-select-module

The CloudCrm microservice solution contains more than one .NET solution. Typically, each ABP Studio module represents a separate .NET solution (see the concepts document). ABP Suite works on a single .NET solution to generate code, so we should select a module here.

Select the CloudCrm.CatalogService module and click the OK button. It will open ABP Suite as shown below:

abp-studio-abp-suite-inside

Generating a Products Page

In the next section, we will use ABP Suite to create a fully functional CRUD page with ABP Suite. The UI part will be in the main web application (CloudCrm.Web) and the application service and other parts will be generated in the Catalog microservice.

Configuring the Product Entity Information

Type Product for the Name field and leave the other options as is. ABP Suite will automatically calculate proper values for you:

abp-suite-product-info

Configuring Properties of the Product Entity

Open the Properties tab and create the properties shown in the following figure:

abp-suite-product-properties

Here the details:

  • Name is required, minimum length is 2 and maximum length is 120.
  • Description is not required, it is a Text area, not Filterable, not Shown on the list page.
  • StockCount has a Default value 0, minimum value 0 and maximum value 999999.
  • ReleaseDate is Nullable.

You can leave the other configurations as default.

Generating the Code

abp-suite-product-generating.png

That's all. You can click the Save and generate button to start the code generation process.

abp-suite-product-generated

ABP Suite will generate the necessary code for you. It will take some time to complete the process. After the process is completed, you will see a success message, click the OK button.

abp-studio-catalog-service-build-and-start

We can now build and start the CloudCrm.CatalogService application by clicking the Run -> Build & Start button in the Solution Runner panel.

abp-studio-browse-catalog-service-2

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

Generating the UI Proxy

Now, we need to generate the Static API Proxy for the Web project. Right-click the CloudCrm.Web package and select the ABP CLI -> Generate Proxy -> C# command:

abp-studio-generate-proxy

It will open the Generate C# Proxies window. Select the CloudCrm.CatalogService application, and it will automatically populate the URL field. Select the catalog module, set the service type to application, and check the Without contracts checkbox, as the CloudCrm.Web project already depends on the CloudCrm.CatalogService.Contracts package:

abp-studio-generate-proxy-window

To be able to select the Application, you must Build & Start the related application beforehand. You can start the application using Solution Runner as explained in the previous parts.

Lastly, we need to configure the use of a static HTTP client for the CatalogService in the CloudCrm.Web project. Open the CloudCrmWebModule.cs file in the Web project and add the following line to the ConfigureServices method:

//...
using CloudCrm.CatalogService;

public override void ConfigureServices(ServiceConfigurationContext context)
{
    // Code omitted for brevity
    context.Services.AddStaticHttpClientProxies(
      typeof(CloudCrmCatalogServiceContractsModule).Assembly);
}

Running the Application

Now, stop any application running in the Solution Runner panel, and then run the applications by clicking the Run -> Build & Start All button on the root item in the Solution Runner panel:

abp-studio-run-build-and-start-all

After the application is started, you can right-click and Browse on the CloudCrm.Web application to open it in the ABP Studio's pre-integrated browser:

abp-studio-browse-cloud-crm-products

If you can't see the Products menu item, you need to grant the CatalogService Product permission to the admin role. You can do this by navigating to Identity Management -> Roles and editing the admin role. Alternatively, you can restart the CloudCrm.AdministrationService application to automatically seed all permissions for the admin role.

You can open the Sql Server Management Studio to see the created tables and data:

sql-server-management-studio-products

Summary

In this part, we've created a new entity named Product and generated the necessary code for it. We've also generated the UI proxy for the CatalogService application and configured the static HTTP client for it in the Web project. We've run the application and tested the Products page.


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