Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
17 views

I have multiple microservices, and I am trying to merge them using Ocelot API Gateways. I have created different JSON files for each microservice and I'm adding them using the code below. However, it'...
OpsTeQ User's user avatar
Advice
6 votes
7 replies
347 views

Our current codebase exists as a monolithic .NET application. The many years of legacy has made it difficult for our engineers to make changes and we're looking to Strangler Fig our way out of a Big ...
Jaidiac's user avatar
  • 101
-1 votes
0 answers
37 views

I'm working with Spring Boot Microservice project. For now i have used redis per microservice. I want to use redis cluster and have one microservice for caching data throw messaging system. I want to ...
Jeff's user avatar
  • 11
0 votes
0 answers
38 views

How I will get to know when to use OpenFeign client & When to use RestTemplate for microservice synchronous communication? When I have both options available then based on what aspect I need to ...
Shriya Bhat Balehittalu's user avatar
0 votes
0 answers
58 views

I would like to ask about a certain topic that is tough one. Im working in a project that has microservices architecture with more than 1 databases running every time. in django, how can I perform ...
1 vote
2 answers
95 views

I’m refactoring a microservice and I need to move one of my domain objects into an external shared dependency (library). Currently, this domain object is annotated with JPA (@Entity, @Id, etc.). ...
Ryley38's user avatar
  • 403
0 votes
0 answers
45 views

TLDR:Dockerised app redirects me to docker network URL instead of localhost. Objective: Redirect user to identity provider (localhost:6067) while communicating with it at (mcro.identity) from Razor ...
Hashed's user avatar
  • 93
0 votes
1 answer
40 views

In a system consisting of many CQRS (Command API + Query API) microservices (bounded contexts) that communicate via events on an event bus. Which API (Command or Query) should consume the events from ...
worrob's user avatar
  • 13
1 vote
0 answers
74 views

My microservice uses an external dependency which is a JAR build by my company. I can't figure why the bean is not found. *************************** APPLICATION FAILED TO START ***********************...
Ryley38's user avatar
  • 403
-3 votes
1 answer
109 views

I am trying to run Quarkus application. I have about 20 separate Quarkus applications and each one is built as a JAR file using Maven. I'm trying to figure out the best way to run all of them locally ...
robertD's user avatar
  • 23
-2 votes
1 answer
142 views

I'm architecting my first microservices system and need guidance on service boundaries for a multi-feature platform. Building a Spring Boot backend that encompasses three distinct business domains: ...
Feres Guedich's user avatar
0 votes
1 answer
195 views

I’m building a multi-tenant Spring Boot application where all tenants share the same database and schema, but data is separated by a hospital_id column in each table. Here’s my setup: Same database ...
Himanshu Sharma 's user avatar
0 votes
0 answers
31 views

This issue has persistsed for over 5 days. I only want to generate gateaway and microservice using this JDL file application { config { baseName gateway packageName com.christdoes.gateway ...
ken4ward's user avatar
  • 2,296
-2 votes
1 answer
127 views

In my existing monolith application, I generate files that need to be sent as email attachments. I've started moving to a microservices architecture, where an event is raised via RabbitMQ to trigger ...
kdeepak's user avatar
  • 79
0 votes
0 answers
35 views

I'm working on separating services. But there's something I'm not sure about. When separating services, it is difficult to separate entity values. For example) Here is a part of my item entity. @...
hahyeon-cho's user avatar
1 vote
0 answers
305 views

I'm building an app that follows a microservice architecture – mainly to learn how to set up microservices the right way. Right now, I'm running both Keycloak and my auth service in separate Docker ...
Ayhan's user avatar
  • 123
0 votes
0 answers
185 views

I'm developing a backend application divided into microservices and, for performance reasons, I need to duplicate some of the user's data (like his id and username) across every microservice with ...
Davide Aprea's user avatar
5 votes
1 answer
166 views

Below code handles the incoming API calls: @RequestMapping(value = "**") void process(HttpServletRequest request, HttpServletResponse response) throws IOException { if (request....
Harish R's user avatar
  • 1,222
0 votes
2 answers
264 views

I seem to be running into some issues with my CORS configurations. I am using Keycloak for my authentication. All of my endpoints are redirected to a login page, with an error 302 (Found). When I ...
Hristo Ganchev's user avatar
0 votes
1 answer
164 views

Hi I am trying to build live prediction with the YOLO. The goal is to stream the data with some kind of transformation from the inference to a final frontend. The flow should be like this: model ...
ole's user avatar
  • 13
0 votes
0 answers
120 views

I am new to Kafka & trying to make a decent project for my resume. So in a multi-service (microservices running on docker) model in which I'm developing multiple Spring Boot applications, two of ...
Aadarsh Pandey's user avatar
0 votes
0 answers
44 views

I'm learning integration tests on very simple example. Specs: I have 2 .Net Core apps: App1 and App2. App1 uri: "http://localhost:1111", App2 uri: "http://localhost:2222" Scenario: ...
cembo's user avatar
  • 1,137
1 vote
0 answers
93 views

I have two microservices(for now) Movie, Show MovieEntity.java @Entity @Table(name = "MOVIES") @Data @Builder @NoArgsConstructor @AllArgsConstructor public class ...
Dev's user avatar
  • 388
0 votes
0 answers
218 views

I'm using a multi-stage Dockerfile to build and run my Nest.js application in a Node.js container. However, the final container size is around 600 MB, and I’d like to reduce it further. # Build stage ...
karthikeyantse's user avatar
0 votes
0 answers
37 views

I set the application.yml files for configuration server and discovery server. When I start to run config-server, it is started with any error. However, discovery server does not do. It gives some ...
GreenEngineer's user avatar

1
2 3 4 5
187