...

/

Designing the Backend Application

Designing the Backend Application

Learn how to design a Spring backend application.

We'll cover the following...

Application design

You’ll create a typical three-layer backend application. The exception here is that there is no business logic involved, so the controllers will directly use the repositories.

Besides, we’ll create two coexisting stacks:

  • The reactive way
  • The classic way
...