Skip to main content
Filter by
Sorted by
Tagged with
Best practices
0 votes
1 replies
60 views

In your experience, which software architecture can be considered the most solid and future-proof for modern systems? Many developers highlight Hexagonal Architecture for its modularity and decoupling,...
AHMED HAFDI's user avatar
0 votes
1 answer
53 views

I'm trying to use Dependency Inversion in Nestjs. I'm trying to use a hexagonal architecture. For the purpose of this question I've created a fake simplified example with three modules in two ...
Bram Meerten's user avatar
1 vote
0 answers
32 views

While going through some course in nestjs and trying to implement the Hexagonal Architecture, I faced this Dependency Injection issue. I am new to nestjs and I made sure that my code is exactly the ...
Ahmed Ajajeh's user avatar
0 votes
1 answer
161 views

I have this project on github My problem is that I'm not sure if I'm applying hexagonal architecture correctly. I have made a project that is responsible for managing a to-do list, where I can work ...
Javier's user avatar
  • 2,123
0 votes
0 answers
27 views

When I want to assign my controller methods from "import { Router } from "express";" it gives me this error: Error: No overload matches this call. The last overload gave the ...
kevin Steven's user avatar
0 votes
1 answer
86 views

Trying to understand how we would use Hexagonal architecture with EIP. In the Spring Boot example I have below, the UserMessageHandler is a part of the inbound adapter (according to me) and is calling ...
abhaybhatia's user avatar
2 votes
1 answer
961 views

I'm changing 3 layer architecture to hexagonal architecture. In hexagonal, Should the exception be throwed in the adapter or in the service? This is code I write. I use Kotlin, Spring, JPA. Once I ...
gim minjae's user avatar
1 vote
1 answer
1k views

I've a spring application (webservice that connect to a database and retrieve data) using a hexagonal architecture and DDD (Domain-Driven Design). The basic struture is Application Controller to ...
JMarques's user avatar
  • 3,064
0 votes
1 answer
302 views

I'm designing architecture for my small project. Java, spring-boot powered. The idea behind this application is simple - retrieve some decision based on input parameters and external api. I think that ...
aiwillconquerus's user avatar
1 vote
0 answers
101 views

I am developing a service by combining Kotlin, Spring Boot, multi-module, and hexagonal architecture. While implementing the login logic, I encountered the following error: *************************** ...
ani's user avatar
  • 11
1 vote
3 answers
983 views

Im creating service in hexagonal architecture that consume data from topic. In the same projects I want to use kafka streams to merge few topics into single one and then consume that data from that ...
Krzysztof Panek's user avatar
0 votes
2 answers
1k views

I work on a spring boot application with spring data and hibernate. I am using hexagonal architecture. I have 2 hexagons: ConnexionManagment OrderManagment Each hexagon interacts with the same table ...
ElieA's user avatar
  • 13
2 votes
1 answer
3k views

I have read quite a few articles about ports and adapters. Considering communication, they all just speak about communicating between the different "layers" (domain, application, adapters) ...
Phreneticus's user avatar
2 votes
1 answer
245 views

Lets say we have a typical implementation of the ports/adapter pattern: @RestController private class OrderController { private final CreateOrderPort createOrderPort; @PostMapping ...
Ilias Mertzanidis's user avatar
0 votes
2 answers
385 views

I'm trying to rewrite monolith app onto a modular monolith using DDD and hexagonal architecture. Tried to extract three modules (aggregates) at first: "Shared", "User" and "...
Jazi's user avatar
  • 6,762
1 vote
0 answers
509 views

I'm new to hexagonal architecture & ran into a scenario where I can't figure how it can be achieved. I have two domain objects say Employee & Vehicle. Employee can have many vehicles. My ...
Init_Rebel's user avatar
1 vote
2 answers
4k views

I am wondering what is the best way in a Spring Boot application to internally pass an access token from an incoming request through the different layers, before using it in an outgoing request? The ...
Christian's user avatar
  • 423
1 vote
1 answer
1k views

I am implementing a spring boot microservice using Clean Architecture. I have a multi module java app, with domain, application and infrastructure. Domain and Application modules do not know anything ...
codingwzrd's user avatar
1 vote
2 answers
814 views

I have a demo project which tries to respect strictly clean/onion/hexagonal architecture. Here is how I configure ArchUnit test : @AnalyzeClasses(packages ="fr.tristan.demoassurance", ...
Tristan's user avatar
  • 9,201
1 vote
1 answer
116 views

Before starting to move to an hexagonal architecture, my application (roughly) had these jars, gathering into a bigger executable. (to be more precise, for a comment below: concretely each of my Maven ...
Marc Le Bihan's user avatar
0 votes
1 answer
194 views

I discovered the hexagonal architecture and I'm willing to apply it on a rather large Spring Boot application. A stackoverflow user started a question with a list of sub-packages looking to me really ...
Marc Le Bihan's user avatar
2 votes
1 answer
894 views

In my Java application, I try to implement hexagonal architecture: Its inner core package contains the pure business logic. These are in the form of plain old Java objects and interfaces. On one ...
Florian's user avatar
  • 5,131
1 vote
1 answer
1k views

when i install hexagon sdk 5.1.0.0 using QPM, error occured "hexagonsdk5x_jre.5.2.0.0.windows-x86.exe hexagonsdk5x_jre.5.2.0.0.windows-x86.exe was not installed". then install these deps ...
Chun Li's user avatar
  • 13
1 vote
1 answer
1k views

Sample architecture Recently I started to learn Clean Architecture implementation. Now I'm stuck on the way to create my entities and create the between them. It's suggested in uncle Bob to have ...
Eternal Learner's user avatar
1 vote
0 answers
308 views

I'm looking for a good example of login using hexagonal architecture. I use spring boot, but it doesn't matter if you reply in other languages and frameworks. Send username, password from incoming ...
정민영's user avatar

1
2 3 4 5