56 questions
Best practices
2
votes
4
replies
89
views
How to solve import problem in Microservice Architecture?
As part of learning I'm trying to switch monolithic project to microservice architecture and encountered import problems.
GitHub Project
Project's tree looks like:
users/
pyproject.toml
src/
...
Best practices
0
votes
3
replies
147
views
Monolithic Backend DDD
I'm building a quite big app which has the following "modules": health, safety, hr and core(more on that later).
The idea for the app is that my user buys a subscription based on the module ...
Best practices
0
votes
6
replies
117
views
Implementing ACID with Transactions in Modular Monolitic Backend
Edit 03/12/2025
I ended up using the ctx *fiber.Ctx as a solution.
My handlers, usecases, orchestrators and repositories receives my request context. In my orchestrator I create my unified transaction ...
Score of -1
3 answers
386 views
How to use a Service or Repository from another module in a Java Spring Boot monolithic project? [duplicate]
I have an Admin module and a Core module, I have to use the CustomerRepository from Admin module in Core Module. When I try to import the module as a dependency, I get build errors. It says the ...
Score of 0
0 answers
59 views
Migrating a monolithic app to microservices, should I merge layers into a single one?
I am in the process of learning the complex world of microservices. I am migrating a traditional multilayer monolithic application written in .NET Core 8 to an application based on microservices. The ...
Score of 0
0 answers
52 views
splitting Django monolithic
Let's say I've a big Django monolithic e-commerce
I've product, orders and webhooks apps
I want to split them to make sure that when a service is down, the others stays up
when I do some changes in a ...
Score of 2
2 answers
1141 views
Why CQRS is called as MicroServices Design Pattern and Not Monolithic Design Pattern?
The CQRS pattern splits the application into two parts: the command side and the query side. The command side handles create, update, and delete requests. The query side runs the query part by using ...
Score of 0
0 answers
51 views
C#.net monolithic installer with prerequisites
There are hundreds of questions and answers around embedding installation prerequisites, however there is no answer to embedding the prerequisites, the prerequisite checking installer and application ...
Score of 1
1 answer
91 views
Basic microservice design problem re shared data
Scenario
I'll use a hypothetical for the purposes of getting to the design problem I think is relevant.
I have an 'orders' microservice which, rather obviously, owns orders made by my users.
I also ...
Score of 0
2 answers
202 views
Can we completely avoid synchronous approach between microservices?
1)If 2 microservices (say order and payment services) can connect asynchronously, then we can avoid using circuit/retry/throttle patterns, right?
I really dont understand why going synchrnous ...
Score of 1
0 answers
103 views
How to combine microservice and monolith data for operational reporting?
I am looking for strategic advice about our operational reporting strategy. Currently, we have an effective monolith that has been in existence for decades. Over the past couple years, we have tried ...
Score of 0
1 answer
366 views
Should I used Orchestration or Choreography pattern?
I am currently developing a service and its current architecture is monolithic. So, when a client clicks, the front end connects with the backend service. On the backend, currently it is designed in ...
Score of 0
1 answer
85 views
How to design "delete user flow" in monolith application with Spring Boot?
I have a monolith spring boot application and I have a user for the program. I want to make an endpoint to delete user, but my problem is there are so many entities and Jpa repository interfaces ...
Score of 0
1 answer
169 views
Is it possible to containerize a .NET assembly or do the equivalent?
I am in the process of building out a "Modular Monolith" whereby the individual services are stored as .NET projects within the overall solution. That way the additional assemblies only ...
Score of 1
1 answer
239 views
Are Monolith applications single tier application
Are monolithic applications single tiered applications or is it at just code level i.e. UI, Business logic and data access layer in same one big repository? If it is single tiered then does it mean ...