57 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
Best practices
0
votes
0
replies
48
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
71
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 ...
-1
votes
3
answers
241
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 ...
0
votes
0
answers
50
views
Vue 3 + Laravel monolith: How to prevent JS from crashing the entire frontend?
I’m working on a monolithic Laravel + Vue 3 app (using the Composition API), and I’m wondering what the best practices are to prevent JavaScript errors from completely crashing the frontend.
Ideally, ...
0
votes
0
answers
15
views
Code analysis tool for Monolith java based application migration to SOA
We have a monolithic application and we want to create multiple service based projects(REST APIs). Is there a product available in market which can measure some of the improvements such as
How much ...
0
votes
0
answers
56
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 ...
0
votes
0
answers
50
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 ...
2
votes
2
answers
1k
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 ...
0
votes
0
answers
48
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 ...
1
vote
1
answer
84
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 ...
0
votes
2
answers
196
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 ...
1
vote
0
answers
92
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 ...
0
votes
1
answer
325
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 ...
0
votes
1
answer
72
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 ...
0
votes
1
answer
125
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 ...